Class BadDataPathCardinalityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.ametys.runtime.model.exception.BadDataPathCardinalityException
-
- All Implemented Interfaces:
Serializable
public class BadDataPathCardinalityException extends RuntimeException
Exception thrown when an attempt to retrieve a data from a path with multiple data inside the path (not in the last segment)- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BadDataPathCardinalityException(String message)
Constructs a new bad data path cardinality exception with the specified detail message.BadDataPathCardinalityException(String message, Throwable cause)
Constructs a new bad data path cardinality exception with the specified detail message and cause.BadDataPathCardinalityException(Throwable cause)
Constructs a new bad data path cardinality 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
-
BadDataPathCardinalityException
public BadDataPathCardinalityException(String message)
Constructs a new bad data path cardinality exception with the specified detail message.- Parameters:
message
- The detail message.
-
BadDataPathCardinalityException
public BadDataPathCardinalityException(String message, Throwable cause)
Constructs a new bad data path cardinality exception with the specified detail message and cause.- Parameters:
message
- The detail message.cause
- The cause.
-
BadDataPathCardinalityException
public BadDataPathCardinalityException(Throwable cause)
Constructs a new bad data path cardinality exception with the specified cause.- Parameters:
cause
- The cause.
-
-