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
public class InvalidRelationException extends BaseException
Exceptions of this type are thrown when aValidationAction
has detected that a file related to the main file is invalid.- Version:
- 2.5
- Author:
- Nicklas
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description InvalidRelationException()
Create 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
.InvalidRelationException(Throwable cause)
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 Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InvalidRelationException
public InvalidRelationException()
Create a newInvalidRelationException
object.
-
InvalidRelationException
public InvalidRelationException(Throwable cause)
Create a newInvalidRelationException
object.- Parameters:
cause
- Throwable object that caused this exception to be thrown.
-
InvalidRelationException
public InvalidRelationException(String message)
Create a newInvalidRelationException
object with the specifiedmessage
.- Parameters:
message
- The message to throw with the exception
-
-