Package org.silverpeas.core.exception
Class SilverpeasTrappedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.silverpeas.kernel.SilverpeasException
-
- org.silverpeas.core.exception.SilverpeasException
-
- org.silverpeas.core.exception.SilverpeasTrappedException
-
- All Implemented Interfaces:
Serializable
,FromModule
,WithNested
- Direct Known Subclasses:
JobDomainPeasTrappedException
,UtilTrappedException
@Deprecated public abstract class SilverpeasTrappedException extends SilverpeasException
Deprecated.Deprecated exception. Please use insteadSilverpeasException
SilverpeasException est la racine de la hiérarchie d'exception silverpeas. Toutes les classes d'exception spécifiques aux differents modules doivent dériver (directement ou non) de SilverpeasException. La page d'erreur globale à l'application ne saura traiter correctement que les SilverpeasException. Les autres exception (ou error ou runtime) provoqueront l'affichage d'une page d'erreur imprévue. Le message que l'on donne à l'exception est très important, il doit etre affiché à l'utilisateur. C'est pourquoi le label est multilangue. Chaque classe heritant de SilverpeasException doit surdefinir la fonction getModule qui retourne le nom du module (le meme nom que celui defini dans Silvertrace)- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.silverpeas.core.exception.SilverpeasException
ERROR, FATAL, WARNING
-
-
Constructor Summary
Constructors Constructor Description SilverpeasTrappedException(String callingClass, int errorLevel, String message)
Deprecated.SilverpeasTrappedException(String callingClass, int errorLevel, String message, Exception nested)
Deprecated.SilverpeasTrappedException(String callingClass, int errorLevel, String message, String extraParams)
Deprecated.SilverpeasTrappedException(String callingClass, int errorLevel, String message, String extraParams, Exception nested)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getGoBackPage()
Deprecated.void
setGoBackPage(String gbp)
Deprecated.-
Methods inherited from class org.silverpeas.core.exception.SilverpeasException
getChainedExceptions, getErrorLevel, getExtraInfos, getMessageLang, getMessageLang, getModule, getNested, printStackTrace, printStackTrace, printStackTrace, traceException
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SilverpeasTrappedException
public SilverpeasTrappedException(String callingClass, int errorLevel, String message)
Deprecated.
-
SilverpeasTrappedException
public SilverpeasTrappedException(String callingClass, int errorLevel, String message, String extraParams)
Deprecated.
-
SilverpeasTrappedException
public SilverpeasTrappedException(String callingClass, int errorLevel, String message, Exception nested)
Deprecated.
-
-