javax.persistence.PersistenceException - JPA exception
javax.persistence
Exception PersistenceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.persistence.PersistenceException
- Implemented Interfaces:
Serializable
PersistenceException except for instances of
NoResultException, NonUniqueResultException,
LockTimeoutException, and QueryTimeoutException will cause
the current transaction, if one is active, to be marked for rollback.
- Since:
- JPA 1.0
PersistenceException exception
with null as its detail message.- Since:
- JPA 1.0
PersistenceException exception
with the specified detail message.- Parameters:
message- the detail message.
- Since:
- JPA 1.0
PersistenceException exception
with the specified cause.- Parameters:
cause- the cause.
- Since:
- JPA 1.0
PersistenceException exception
with the specified detail message and cause.- Parameters:
message- the detail message.cause- the cause.
- Since:
- JPA 1.0
Throwable object information about the current state of
the stack frames for the current thread.- Returns:
- a reference to this
Throwableinstance.
- Since:
- Java JDK1.0
- See Also:
java.lang.Throwable.printStackTrace()
null if the
cause is nonexistent or unknown. (The cause is the throwable that
caused this throwable to get thrown.)
This implementation returns the cause that was supplied via one of
the constructors requiring a Throwable, or that was set after
creation with the initCause(Throwable) method. While it is
typically unnecessary to override this method, a subclass can override
it to return a cause set by some other means. This is appropriate for
a "legacy chained throwable" that predates the addition of chained
exceptions to Throwable. Note that it is not
necessary to override any of the PrintStackTrace methods,
all of which invoke the getCause method to determine the
cause of a throwable.
- Returns:
- the cause of this throwable or
nullif the cause is nonexistent or unknown.
- Since:
- Java 1.4
getMessage().- Returns:
- The localized description of this throwable.
- Since:
- Java JDK1.1
- Returns:
- the detail message string of this Throwable instance (which may be null).
- Since:
- Java JDK1.0
printStackTrace(). Returns an array of stack trace elements,
each representing one stack frame. The zeroth element of the array
(assuming the array's length is non-zero) represents the top of the
stack, which is the last method invocation in the sequence. Typically,
this is the point at which this throwable was created and thrown.
The last element of the array (assuming the array's length is non-zero)
represents the bottom of the stack, which is the first method invocation
in the sequence.
Some virtual machines may, under some circumstances, omit one or more stack frames from the stack trace. In the extreme case, a virtual machine that has no stack trace information concerning this throwable is permitted to return a zero-length array from this method. Generally speaking, the array returned by this method will contain one element for every frame that would be printed by printStackTrace.
- Returns:
- an array of stack trace elements representing the stack trace pertaining to this throwable.
- Since:
- Java 1.4
This method can be called at most once. It is generally called from
within the constructor, or immediately after creating the
throwable. If this throwable was created
with Throwable(Throwable) or
Throwable(String,Throwable), this method cannot be called
even once.
- Parameters:
cause- the cause (which is saved for later retrieval by thegetCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
- Returns:
- a reference to this
Throwableinstance.
- Throws:
IllegalArgumentException- ifcauseis this throwable. (A throwable cannot be its own cause.)IllegalStateException- if this throwable was created withThrowable(Throwable)orThrowable(String,Throwable), or this method has already been called on this throwable.
- Since:
- Java 1.4
Throwable object on the error output stream that is
the value of the field System.err. The first line of
output contains the result of the toString() method for
this object. Remaining lines represent data previously recorded by
the method fillInStackTrace(). The format of this
information depends on the implementation, but the following
example may be regarded as typical:
This example was produced by running the program:java.lang.NullPointerException at MyClass.mash(MyClass.java:9) at MyClass.crunch(MyClass.java:6) at MyClass.main(MyClass.java:3)
class MyClass { public static void main(String[] args) { crunch(null); } static void crunch(int[] a) { mash(a); } static void mash(int[] b) { System.out.println(b[0]); } }
HighLevelException: MidLevelException: LowLevelException at Junk.a(Junk.java:13) at Junk.main(Junk.java:4) Caused by: MidLevelException: LowLevelException at Junk.c(Junk.java:23) at Junk.b(Junk.java:17) at Junk.a(Junk.java:11) ... 1 more Caused by: LowLevelException at Junk.e(Junk.java:30) at Junk.d(Junk.java:27) at Junk.c(Junk.java:21) ... 3 more
public class Junk { public static void main(String args[]) { try { a(); } catch(HighLevelException e) { e.printStackTrace(); } } static void a() throws HighLevelException { try { b(); } catch(MidLevelException e) { throw new HighLevelException(e); } } static void b() throws MidLevelException { c(); } static void c() throws MidLevelException { try { d(); } catch(LowLevelException e) { throw new MidLevelException(e); } } static void d() throws LowLevelException { e(); } static void e() throws LowLevelException { throw new LowLevelException(); } } class HighLevelException extends Exception { HighLevelException(Throwable cause) { super(cause); } } class MidLevelException extends Exception { MidLevelException(Throwable cause) { super(cause); } } class LowLevelException extends Exception { }
- Since:
- Java JDK1.0
- Parameters:
s-PrintStreamto use for output
- Since:
- Java JDK1.0
- Parameters:
s-PrintWriterto use for output
- Since:
- Java JDK1.1
getStackTrace() and printed by printStackTrace()
and related methods.
This method, which is designed for use by RPC frameworks and other
advanced systems, allows the client to override the default
stack trace that is either generated by fillInStackTrace()
when a throwable is constructed or deserialized when a throwable is
read from a serialization stream.- Parameters:
stackTrace- the stack trace elements to be associated with thisThrowable. The specified array is copied by this call; changes in the specified array after the method invocation returns will have no affect on thisThrowable's stack trace.
- Throws:
NullPointerException- ifstackTraceisnull, or if any of the elements ofstackTracearenull
- Since:
- Java 1.4
- the
nameof the class of this object - ": " (a colon and a space)
- the result of invoking this object's
getLocalizedMessagemethod
- Returns:
- a string representation of this throwable.
- Since:
- Java JDK1.0
and is available under the terms of the Eclipse Public License, v. 1.0 and Eclipse Distribution License, v. 1.0.