org.apache.jdo.model
Class ModelVetoException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.jdo.model.ModelException
org.apache.jdo.model.ModelVetoException
- All Implemented Interfaces:
- java.io.Serializable
- public class ModelVetoException
- extends ModelException
This exception indicates a problem during model update.
- Since:
- JDO 1.0.1
- Author:
- Michael Bouschen
- See Also:
- Serialized Form
Fields inherited from class java.lang.Exception |
|
Fields inherited from class java.lang.Throwable |
|
Constructor Summary |
ModelVetoException()
Creates new ModelVetoException without detail message. |
ModelVetoException(java.lang.String msg)
Constructs a ModelVetoException with the specified
detail message. |
ModelVetoException(java.lang.String msg,
java.lang.Throwable cause)
Constructs a new ModelVetoException with the specified
detail message and cause. |
ModelVetoException(java.lang.Throwable cause)
Constructs a new ModelVetoException with the specified
cause. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getStackTrace, setStackTrace |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ModelVetoException
public ModelVetoException()
- Creates new
ModelVetoException
without detail message.
ModelVetoException
public ModelVetoException(java.lang.String msg)
- Constructs a
ModelVetoException
with the specified
detail message.
- Parameters:
msg
- the detail message.
ModelVetoException
public ModelVetoException(java.lang.Throwable cause)
- Constructs a new
ModelVetoException
with the specified
cause.
- Parameters:
cause
- the cause Throwable
.
ModelVetoException
public ModelVetoException(java.lang.String msg,
java.lang.Throwable cause)
- Constructs a new
ModelVetoException
with the specified
detail message and cause.
- Parameters:
msg
- the detail message.cause
- the cause Throwable
.