|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.apache.commons.lang3.concurrent.ConcurrentRuntimeException
public class ConcurrentRuntimeException
An exception class used for reporting runtime error conditions related to accessing data of background tasks.
This class is an analogon of the ConcurrentException
exception class.
However, it is a runtime exception and thus does not need explicit catch
clauses. Some methods of ConcurrentUtils
throw ConcurrentRuntimeException
exceptions rather than
ConcurrentException
exceptions. They can be used by client code that
does not want to be bothered with checked exceptions.
Constructor Summary | |
---|---|
protected |
ConcurrentRuntimeException()
Creates a new, uninitialized instance of ConcurrentRuntimeException . |
|
ConcurrentRuntimeException(String msg,
Throwable cause)
Creates a new instance of ConcurrentRuntimeException and
initializes it with the given message and cause. |
|
ConcurrentRuntimeException(Throwable cause)
Creates a new instance of ConcurrentRuntimeException and
initializes it with the given cause. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected ConcurrentRuntimeException()
ConcurrentRuntimeException
.
public ConcurrentRuntimeException(Throwable cause)
ConcurrentRuntimeException
and
initializes it with the given cause.
cause
- the cause of this exception
IllegalArgumentException
- if the cause is not a checked exceptionpublic ConcurrentRuntimeException(String msg, Throwable cause)
ConcurrentRuntimeException
and
initializes it with the given message and cause.
msg
- the error messagecause
- the cause of this exception
IllegalArgumentException
- if the cause is not a checked exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |