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 org.hibernate.search.util.common.SearchException
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
ConstructorsConstructorDescriptionClassLoadingException(String message, Throwable cause) Constructs aClassLoadingExceptionusing the specified message and cause. -
Method Summary
Methods inherited from class org.hibernate.search.util.common.SearchException
context, messageWithoutContextMethods 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 aClassLoadingExceptionusing the specified message and cause.- Parameters:
message- A message explaining the exception condition.cause- The underlying cause
-