Package net.sf.basedb.core
Class InvalidRelationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.sf.basedb.core.BaseException
net.sf.basedb.core.InvalidRelationException
- All Implemented Interfaces:
Serializable
Exceptions of this type are thrown when a
ValidationAction
has detected that a file
related to the main file is invalid.- Version:
- 2.5
- Author:
- Nicklas
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionCreate a newInvalidRelationException
object.InvalidRelationException
(String message) Create a newInvalidRelationException
object with the specifiedmessage
.InvalidRelationException
(String message, Throwable cause) Create a newInvalidRelationException
object with the specifiedmessage
.Create a newInvalidRelationException
object. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
InvalidRelationException
public InvalidRelationException()Create a newInvalidRelationException
object. -
InvalidRelationException
Create a newInvalidRelationException
object.- Parameters:
cause
- Throwable object that caused this exception to be thrown.
-
InvalidRelationException
Create a newInvalidRelationException
object with the specifiedmessage
.- Parameters:
message
- The message to throw with the exception
-
InvalidRelationException
Create a newInvalidRelationException
object with the specifiedmessage
.- Parameters:
message
- The message to throw with the exceptioncause
- Throwable object that caused this exception to be thrown.
-