Class ClassLoadingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.hibernate.search.util.common.SearchException
-
- org.hibernate.search.engine.environment.classpath.spi.ClassLoadingException
-
- All Implemented Interfaces:
Serializable
public class ClassLoadingException extends SearchException
Indicates a problem performing class loading.- Author:
- Steve Ebersole, Hardy Ferentschik
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.hibernate.search.util.common.SearchException
SEARCH_EXCEPTION_AND_SUBCLASSES_CAN_USE_CONSTRUCTOR
-
-
Constructor Summary
Constructors Constructor Description ClassLoadingException(String message, Throwable cause)
Constructs aClassLoadingException
using the specified message and cause.
-
Method Summary
-
Methods inherited from class org.hibernate.search.util.common.SearchException
context, messageWithoutContext
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ClassLoadingException
@SuppressForbiddenApis(reason="SearchException and its subclasses are allowed to use SearchException constructors without delegating to Jboss-Logging.") public ClassLoadingException(String message, Throwable cause)
Constructs aClassLoadingException
using the specified message and cause.- Parameters:
message
- A message explaining the exception condition.cause
- The underlying cause
-
-