Class AttributeValueException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
WrongAttributeValueException, WrongReferenceAttributeValueException

public class AttributeValueException extends PerunException
Something is wrong with attribute value. See exception which extends this exception.
Author:
Slavek Licehammer
See Also:
  • Constructor Details

    • AttributeValueException

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

      public AttributeValueException(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
    • AttributeValueException

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

      public AttributeValueException(Attribute attribute)
      Constructor with an attribute in which the problem occurred
      Parameters:
      attribute - attribute in which the problem occurred
    • AttributeValueException

      public AttributeValueException(Attribute attribute, Throwable cause)
      Constructor with an attribute in which the problem occurred and the throwable object
      Parameters:
      attribute - attribute in which the problem occurred
      cause - the cause
    • AttributeValueException

      public AttributeValueException(Attribute attribute, String message)
      Constructor with an attribute in which the problem occurred and the message with details
      Parameters:
      attribute - attribute in which the problem occurred
      message - message with details
    • AttributeValueException

      public AttributeValueException(Attribute attribute, String message, Throwable cause)
      Constructor with an attribute in which the problem occurred, the throwable and the message with details
      Parameters:
      attribute - attribute in which the problem occurred
      message - message with details
      cause - the cause
  • Method Details

    • getAttribute

      public AttributeDefinition getAttribute()
      Getter for attribute
      Returns:
      attribute in which the problem occurred