Class AttributeNotExistsException

All Implemented Interfaces:
Serializable

public class AttributeNotExistsException extends EntityNotExistsException
This exception is thrown when the attribute definition does not exist in the database. However, if the attribute definition exists but the attribute values is not set for the given entity, this exception does not raise and the situation is usually resolved by returning Attribute object with null value instead.
Author:
Slavek Licehammer glory@ics.muni.cz
See Also:
  • Constructor Details

    • AttributeNotExistsException

      public AttributeNotExistsException(String message)
      Simple constructor with a message
      Parameters:
      message - message with details about the cause
    • AttributeNotExistsException

      public AttributeNotExistsException(String message, Throwable cause)
      Constructor with a message and Throwable object
      Parameters:
      message - message with details about the cause
      cause - Throwable that caused throwing of this exception
    • AttributeNotExistsException

      public AttributeNotExistsException(Throwable cause)
      Constructor with a Throwable object
      Parameters:
      cause - Throwable that caused throwing of this exception