Package org.jboss.shrinkwrap.impl.base
Class ExtensionLoadingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.jboss.shrinkwrap.impl.base.ExtensionLoadingException
-
- All Implemented Interfaces:
java.io.Serializable
public class ExtensionLoadingException extends java.lang.RuntimeException
ExtensionLoadingException This Unchecked Exception Class is thrown from theServiceExtensionLoader
when something wrong has happened that we can not recover from.- Version:
- $Revision: $
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ExtensionLoadingException(java.lang.String message)
ExtensionLoadingException(java.lang.String message, java.lang.Throwable cause)
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ExtensionLoadingException
public ExtensionLoadingException(java.lang.String message)
- Parameters:
message
- user-friendly description of why message is thrown
-
ExtensionLoadingException
public ExtensionLoadingException(java.lang.String message, java.lang.Throwable cause)
- Parameters:
message
- user-friendly description of why message is throwncause
- Underlying cause, add this when using Exception Translation / rethrowing
-
-