public class SemaphoreException extends NestedException
Semaphore
interface, to
indicate an error.Constructor and Description |
---|
SemaphoreException()
Deprecated.
Default constructor, for an exception with no nested exception and
no message.
|
SemaphoreException(java.lang.String message)
Deprecated.
Constructs an exception containing an error message, but no
nested exception.
|
SemaphoreException(java.lang.String bundleName,
java.lang.String messageKey,
java.lang.String defaultMsg)
Deprecated.
Constructs an exception containing a resource bundle name, a message
key, and a default message (in case the resource bundle can't be
found).
|
SemaphoreException(java.lang.String bundleName,
java.lang.String messageKey,
java.lang.String defaultMsg,
java.lang.Object[] msgParams)
Deprecated.
Constructs an exception containing a resource bundle name, a message
key, and a default message (in case the resource bundle can't be
found).
|
SemaphoreException(java.lang.String bundleName,
java.lang.String messageKey,
java.lang.String defaultMsg,
java.lang.Object[] msgParams,
java.lang.Throwable exception)
Deprecated.
Constructs an exception containing a resource bundle name, a message
key, a default message format (in case the resource bundle can't be
found), arguments to be incorporated in the message via
java.text.MessageFormat, and another exception.
|
SemaphoreException(java.lang.String bundleName,
java.lang.String messageKey,
java.lang.String defaultMsg,
java.lang.Throwable exception)
Deprecated.
Constructs an exception containing a resource bundle name, a message
key, a default message (in case the resource bundle can't be found),
and another exception.
|
SemaphoreException(java.lang.String message,
java.lang.Throwable exception)
Deprecated.
Constructs an exception containing another exception and a message.
|
SemaphoreException(java.lang.Throwable exception)
Deprecated.
Constructs an exception containing another exception, but no message
of its own.
|
getMessage, getMessage, getMessages, getMessages, getMessages, getNestedException, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, printStackTrace, toString
public SemaphoreException()
public SemaphoreException(java.lang.Throwable exception)
exception
- the exception to containpublic SemaphoreException(java.lang.String message)
message
- the message to associate with this exceptionpublic SemaphoreException(java.lang.String message, java.lang.Throwable exception)
message
- the message to associate with this exceptionexception
- the exception to containpublic SemaphoreException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg)
SemaphoreException(String,String,String,Object[])
constructor,
with a null pointer for the Object[] parameter.
Calls to NestedException.getMessage(Locale)
will attempt to
retrieve the top-most message (i.e., the message from this exception,
not from nested exceptions) by querying the named resource bundle.
Calls to NestedException.printStackTrace(PrintWriter,Locale)
will do the same, where applicable. The message is not retrieved
until one of those methods is called, because the desired locale is
passed into getMessage() and printStackTrace(),
not this constructor.bundleName
- resource bundle namemessageKey
- the key to the message to find in the bundledefaultMsg
- the default messageSemaphoreException(String,String,String,Object[])
,
Throwable.getLocalizedMessage()
public SemaphoreException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg, java.lang.Object[] msgParams)
SemaphoreException(String,String,String,Object[])
constructor,
with a null pointer for the Object[] parameter.
Calls to NestedException.getMessage(Locale)
will attempt to
retrieve the top-most message (i.e., the message from this exception,
not from nested exceptions) by querying the named resource bundle.
Calls to NestedException.printStackTrace(PrintWriter,Locale)
will do the same, where applicable. The message is not retrieved
until one of those methods is called, because the desired locale is
passed into getMessage() and printStackTrace(),
not this constructor.bundleName
- resource bundle namemessageKey
- the key to the message to find in the bundledefaultMsg
- the default messagemsgParams
- parameters to the message, if any, or nullSemaphoreException(String,String,String,Object[])
,
Throwable.getLocalizedMessage()
public SemaphoreException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg, java.lang.Throwable exception)
SemaphoreException(String,String,String,Object[])
constructor, with a null pointer for the Object[]
parameter. Calls to NestedException.getMessage(Locale)
will attempt to
retrieve the top-most message (i.e., the message from this
exception, not from nested exceptions) by querying the named
resource bundle. Calls to
NestedException.printStackTrace(PrintWriter,Locale)
will do the same, where
applicable. The message is not retrieved until one of those methods
is called, because the desired locale is passed into
getMessage() and printStackTrace(), not this
constructor.bundleName
- resource bundle namemessageKey
- the key to the message to find in the bundledefaultMsg
- the default messageexception
- the exception to nestSemaphoreException(String,String,String,Object[])
,
NestedException.getMessage(Locale)
public SemaphoreException(java.lang.String bundleName, java.lang.String messageKey, java.lang.String defaultMsg, java.lang.Object[] msgParams, java.lang.Throwable exception)
NestedException.getMessage(Locale)
will attempt to retrieve the
top-most message (i.e., the message from this exception, not from
nested exceptions) by querying the named resource bundle. Calls to
NestedException.printStackTrace(PrintWriter,Locale)
will do the same, where
applicable. The message is not retrieved until one of those methods
is called, because the desired locale is passed into
getMessage() and printStackTrace(), not this
constructor.bundleName
- resource bundle namemessageKey
- the key to the message to find in the bundledefaultMsg
- the default messagemsgParams
- parameters to the message, if any, or nullexception
- exception to be nestedSemaphoreException(String,String,String,Object[])
,
NestedException.getMessage(Locale)