Class CacheKeyProviderClassNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- lumis.portal.PortalException
-
- lumis.portal.serviceinterfaceinstance.CacheKeyProviderClassNotFoundException
-
- All Implemented Interfaces:
Serializable
public class CacheKeyProviderClassNotFoundException extends PortalException
Portal Exception that indicates that the class that is used to generate the cache key is not available at runtime.- Since:
- 7.0.0
- Version:
- $Revision: 15055 $ $Date: 2012-11-29 18:48:37 -0200 (Thu, 29 Nov 2012) $
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class lumis.portal.PortalException
resources
-
-
Constructor Summary
Constructors Constructor Description CacheKeyProviderClassNotFoundException(String className, Exception cause)
Constructor.CacheKeyProviderClassNotFoundException(String className, IResource resource, Exception cause)
Constructor.
-
Method Summary
-
Methods inherited from class lumis.portal.PortalException
getLocalizedMessage, getLocalizedMessage, getResources, logExceptionCreation, toString, toXmlString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
CacheKeyProviderClassNotFoundException
public CacheKeyProviderClassNotFoundException(String className, IResource resource, Exception cause)
Constructor.- Parameters:
className
- name of the class that wasn't found.resource
- to be used to translate the message.cause
- of the exception (usually aClassNotFoundException
).- Since:
- 7.0.0
-
CacheKeyProviderClassNotFoundException
public CacheKeyProviderClassNotFoundException(String className, Exception cause)
Constructor. Same as callingnew CacheKeyProviderClassNotFound(className, new PortalStringResource(), cause)
.- Parameters:
className
- name of the class that wasn't found.cause
- of the exception (usually aClassNotFoundException
).- Since:
- 7.0.0
-
-