Class NoSuchAttributeValueException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.uni_trier.wi2.procake.utils.exception.CakeException
-
- de.uni_trier.wi2.procake.utils.exception.NoSuchAttributeValueException
-
- All Implemented Interfaces:
Serializable
public class NoSuchAttributeValueException extends CakeException
TheNoSuchAttributeValueExceptionis thrown when the requested attributeValue does not exists in the aggregate class.- Author:
- Tobias Dahlem
- See Also:
CakeException, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoSuchAttributeValueException(Object caller, String missingAttributeValue)NoSuchAttributeValueException(String component, String key, Object parameter1)NoSuchAttributeValueException(String component, String key, Object parameter1, Object parameter2)NoSuchAttributeValueException(String component, String key, Object caller, Object[] parameters)NoSuchAttributeValueException(String component, String key, Object parameter1, Object parameter2, Object parameter3)NoSuchAttributeValueException(String component, String key, Object parameter1, Object parameter2, Object parameter3, Object parameter4)NoSuchAttributeValueException(String component, String key, Object parameter1, Object parameter2, Object parameter3, Object parameter4, Object parameter5)NoSuchAttributeValueException(Throwable cause, Object caller, String missingAttributeValue)
-
Method Summary
-
Methods inherited from class de.uni_trier.wi2.procake.utils.exception.CakeException
getCaller, getComponent, getDetailedMessage, getKey, getParameter, getParameters
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NoSuchAttributeValueException
public NoSuchAttributeValueException(Object caller, String missingAttributeValue)
- Parameters:
caller- the caller of the exception (which is saved for later retrieval by theCakeException.getCaller()method)missingAttributeValue- the name of the missing attributeValue (which is saved for later retrieval by theCakeException.getParameter(int)} method)
-
NoSuchAttributeValueException
public NoSuchAttributeValueException(Throwable cause, Object caller, String missingAttributeValue)
- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method)caller- the caller of the exception (which is saved for later retrieval by theCakeException.getCaller()method)missingAttributeValue- the name of the missing attributeValue (which is saved for later retrieval by theCakeException.getParameter(int)} method)
-
NoSuchAttributeValueException
public NoSuchAttributeValueException(String component, String key, Object parameter1)
- Parameters:
component-key-parameter1-
-
NoSuchAttributeValueException
public NoSuchAttributeValueException(String component, String key, Object parameter1, Object parameter2)
- Parameters:
component-key-parameter1-parameter2-
-
NoSuchAttributeValueException
public NoSuchAttributeValueException(String component, String key, Object parameter1, Object parameter2, Object parameter3)
- Parameters:
component-key-parameter1-parameter2-parameter3-
-
NoSuchAttributeValueException
public NoSuchAttributeValueException(String component, String key, Object parameter1, Object parameter2, Object parameter3, Object parameter4)
- Parameters:
component-key-parameter1-parameter2-parameter3-parameter4-
-
NoSuchAttributeValueException
public NoSuchAttributeValueException(String component, String key, Object parameter1, Object parameter2, Object parameter3, Object parameter4, Object parameter5)
- Parameters:
component-key-parameter1-parameter2-parameter3-parameter4-parameter5-
-
-