Package org.wildfly.naming.client
Class RenameAcrossNamingProvidersException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.naming.NamingException
org.wildfly.naming.client.RenameAcrossNamingProvidersException
- All Implemented Interfaces:
Serializable
An exception which is thrown when the user attempts to rename an object across naming providers.
- Author:
- David M. Lloyd
- See Also:
-
Field Summary
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newRenameAcrossNamingProvidersExceptioninstance.Constructs a newRenameAcrossNamingProvidersExceptioninstance with an initial message.RenameAcrossNamingProvidersException(String msg, Throwable cause) Constructs a newRenameAcrossNamingProvidersExceptioninstance with an initial message and cause.Constructs a newRenameAcrossNamingProvidersExceptioninstance with an initial cause. -
Method Summary
Methods inherited from class javax.naming.NamingException
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
RenameAcrossNamingProvidersException
public RenameAcrossNamingProvidersException()Constructs a newRenameAcrossNamingProvidersExceptioninstance. The message is left blank (null), and no cause is specified. -
RenameAcrossNamingProvidersException
Constructs a newRenameAcrossNamingProvidersExceptioninstance with an initial message. No cause is specified.- Parameters:
msg- the message
-
RenameAcrossNamingProvidersException
Constructs a newRenameAcrossNamingProvidersExceptioninstance with an initial cause. If a non-nullcause is specified, its message is used to initialize the message of thisRenameAcrossNamingProvidersException; otherwise the message is left blank (null).- Parameters:
cause- the cause
-
RenameAcrossNamingProvidersException
Constructs a newRenameAcrossNamingProvidersExceptioninstance with an initial message and cause.- Parameters:
msg- the messagecause- the cause
-