Class UndefinedItemPathException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.ametys.runtime.model.exception.UndefinedItemPathException
-
- All Implemented Interfaces:
Serializable
public class UndefinedItemPathException extends RuntimeException
Exception thrown when an attempt to retrieve a model item from an undefined path- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UndefinedItemPathException(String message)
Constructs a new undefined item path exception with the specified detail message.UndefinedItemPathException(String message, Throwable cause)
Constructs a new undefined item path exception with the specified detail message and cause.UndefinedItemPathException(Throwable cause)
Constructs a new undefined item path exception with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UndefinedItemPathException
public UndefinedItemPathException(String message)
Constructs a new undefined item path exception with the specified detail message.- Parameters:
message
- The detail message.
-
UndefinedItemPathException
public UndefinedItemPathException(String message, Throwable cause)
Constructs a new undefined item path exception with the specified detail message and cause.- Parameters:
message
- The detail message.cause
- The cause.
-
UndefinedItemPathException
public UndefinedItemPathException(Throwable cause)
Constructs a new undefined item path exception with the specified cause.- Parameters:
cause
- The cause.
-
-