Class WrongReferenceAttributeValueException

All Implemented Interfaces:
Serializable

public class WrongReferenceAttributeValueException extends AttributeValueException
Attribute which is reference for used attribute has illegal value. Because of it, we can't determinate if used attribute have correct value.
Author:
Slavek Licehammer, Michal Prochazka
See Also:
  • Constructor Details

    • WrongReferenceAttributeValueException

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

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

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

      public WrongReferenceAttributeValueException(AttributeDefinition attribute)
      Constructor with the attribute
      Parameters:
      attribute - attribute whose referenceAttribute has illegal value
    • WrongReferenceAttributeValueException

      public WrongReferenceAttributeValueException(AttributeDefinition attribute, String message)
      Constructor with the attribute and a message
      Parameters:
      attribute - attribute whose referenceAttribute has illegal value
      message - message with details about the cause
    • WrongReferenceAttributeValueException

      public WrongReferenceAttributeValueException(AttributeDefinition attribute, AttributeDefinition referenceAttribute)
      Constructor with the attribute and the reference attribute
      Parameters:
      attribute - attribute whose referenceAttribute has illegal value
      referenceAttribute - the attribute whose value is illegal
    • WrongReferenceAttributeValueException

      public WrongReferenceAttributeValueException(AttributeDefinition attribute, AttributeDefinition referenceAttribute, Throwable cause)
      Constructor with the attribute, the reference attribute and the Throwable object
      Parameters:
      attribute - attribute whose referenceAttribute has illegal value
      referenceAttribute - the attribute whose value is illegal
      cause - Throwable that caused throwing of this exception
    • WrongReferenceAttributeValueException

      public WrongReferenceAttributeValueException(AttributeDefinition attribute, AttributeDefinition referenceAttribute, String message)
      Constructor with the attribute, the reference attribute and a message
      Parameters:
      attribute - attribute whose referenceAttribute has illegal value
      referenceAttribute - the attribute whose value is illegal
      message - message with details about the cause
    • WrongReferenceAttributeValueException

      public WrongReferenceAttributeValueException(AttributeDefinition attribute, AttributeDefinition referenceAttribute, String message, Throwable cause)
      Constructor with the attribute, the reference attribute, a message and the Throwable object
      Parameters:
      attribute - attribute whose referenceAttribute has illegal value
      referenceAttribute - the attribute whose value is illegal
      message - message with details about the cause
      cause - Throwable that caused throwing of this exception
    • WrongReferenceAttributeValueException

      public WrongReferenceAttributeValueException(AttributeDefinition attribute, AttributeDefinition referenceAttribute, Object attributeHolderPrimary, Object attributeHolderSecondary, String message)
      Constructor with the attribute, the reference attribute, primary attributHolder, secondary attributeHolder and a message
      Parameters:
      attribute - attribute whose referenceAttribute has illegal value
      referenceAttribute - the attribute whose value is illegal
      attributeHolderPrimary - primary entity holding the attribute
      attributeHolderSecondary - secondary entity holding the attribute
      message - message with details about the cause
    • WrongReferenceAttributeValueException

      public WrongReferenceAttributeValueException(AttributeDefinition attribute, AttributeDefinition referenceAttribute, Object attributeHolderPrimary, Object attributeHolderSecondary, Object refAttributeHolderPrimary, Object refAttributeHolderSecondary, String message)
      Constructor with the attribute, the reference attribute, primary attributeHolder, secondary attributeHolder, primary attributeHolder of the referenceAttribute, secondary attributeHolder of the referenceAttribute and a message
      Parameters:
      attribute - attribute whose referenceAttribute has illegal value
      referenceAttribute - the attribute whose value is illegal
      attributeHolderPrimary - primary entity holding the attribute
      attributeHolderSecondary - secondary entity holding the attribute
      refAttributeHolderPrimary - primary entity holding the attribute of the referenceAttribute
      refAttributeHolderSecondary - secondary entity holding the attribute of the referenceAttribute
      message - message with details about the cause
    • WrongReferenceAttributeValueException

      public WrongReferenceAttributeValueException(AttributeDefinition attribute, AttributeDefinition referenceAttribute, Object attributeHolderPrimary, Object attributeHolderSecondary, Object refAttributeHolderPrimary, Object refAttributeHolderSecondary, String message, Throwable cause)
      Constructor with the attribute, the reference attribute, primary attributeHolder, secondary attributeHolder, primary attributeHolder of the referenceAttribute, secondary attributeHolder of the referenceAttribute, a message and the Throwable object
      Parameters:
      attribute - attribute whose referenceAttribute has illegal value
      referenceAttribute - the attribute whose value is illegal
      attributeHolderPrimary - primary entity holding the attribute
      attributeHolderSecondary - secondary entity holding the attribute
      refAttributeHolderPrimary - primary entity holding the attribute of the referenceAttribute
      refAttributeHolderSecondary - secondary entity holding the attribute of the referenceAttribute
      message - message with details about the cause
      cause - Throwable that caused throwing of this exception
  • Method Details