Class RemoteMetadataException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.juneau.BasicRuntimeException
org.apache.juneau.rest.client.remote.RemoteMetadataException
- All Implemented Interfaces:
Serializable
Exceptions caused by invalid REST proxy classes.
See Also:
-
Constructor Summary
ConstructorDescriptionRemoteMetadataException
(Class<?> c, String message, Object... args) Constructor.RemoteMetadataException
(Method m, String message, Object... args) Constructor.RemoteMetadataException
(Throwable cause, String message, Object... args) Constructor. -
Method Summary
Methods inherited from class org.apache.juneau.BasicRuntimeException
assertModifiable, fillInStackTrace, getCause, getMessage, initCause, isUnmodifiable, setMessage, setStackTrace, setUnmodifiable, unwrap
Methods inherited from class java.lang.Throwable
addSuppressed, getCause, getLocalizedMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, toString
-
Constructor Details
-
RemoteMetadataException
Constructor.- Parameters:
cause
- The cause of this exception.message
- TheMessageFormat
-style message.args
- OptionalMessageFormat
-style arguments.
-
RemoteMetadataException
Constructor.- Parameters:
m
- The interface method that has an invalid definition.message
- TheMessageFormat
-style message.args
- OptionalMessageFormat
-style arguments.
-
RemoteMetadataException
Constructor.- Parameters:
c
- The interface class that has an invalid definition.message
- TheMessageFormat
-style message.args
- OptionalMessageFormat
-style arguments.
-