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
Indicates a problem performing class loading.
- Author:
- Steve Ebersole, Hardy Ferentschik
- See Also:
-
Field Summary
Fields inherited from class org.hibernate.search.util.common.SearchException
SEARCH_EXCEPTION_AND_SUBCLASSES_CAN_USE_CONSTRUCTOR
-
Constructor Summary
ConstructorDescriptionClassLoadingException
(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 Details
-
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
-