Package org.jboss.modules
Class ModuleLoadError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- org.jboss.modules.ModuleLoadError
-
- All Implemented Interfaces:
java.io.Serializable
public class ModuleLoadError extends java.lang.Error
Module load error, thrown when there is some problem loading a module during runtime.- Author:
- David M. Lloyd
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ModuleLoadError()
Constructs aModuleLoadException
with no detail message.ModuleLoadError(java.lang.String msg)
Constructs aModuleLoadException
with the specified detail message.ModuleLoadError(java.lang.String msg, java.lang.Throwable cause)
Constructs aModuleLoadException
with the specified detail message and cause.ModuleLoadError(java.lang.Throwable cause)
Constructs aModuleLoadException
with the specified cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ModuleLoadException
toException()
Convert to a checked exception type.
-
-
-
Constructor Detail
-
ModuleLoadError
public ModuleLoadError()
Constructs aModuleLoadException
with no detail message. The cause is not initialized, and may subsequently be initialized by a call toinitCause
.
-
ModuleLoadError
public ModuleLoadError(java.lang.String msg)
Constructs aModuleLoadException
with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toinitCause
.- Parameters:
msg
- the detail message
-
ModuleLoadError
public ModuleLoadError(java.lang.Throwable cause)
Constructs aModuleLoadException
with the specified cause. The detail message is set to:(cause == null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method)
-
ModuleLoadError
public ModuleLoadError(java.lang.String msg, java.lang.Throwable cause)
Constructs aModuleLoadException
with the specified detail message and cause.- Parameters:
msg
- the detail messagecause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method)
-
-
Method Detail
-
toException
public ModuleLoadException toException()
Convert to a checked exception type.- Returns:
- the checked exception
-
-