Package org.zkoss.lang
Class SystemException.Aide
- java.lang.Object
-
- org.zkoss.lang.SystemException.Aide
-
- Enclosing class:
- SystemException
public static class SystemException.Aide extends java.lang.Object
Utilities.The reason to use a class to hold static utilities is we can override the method's return type later.
-
-
Constructor Summary
Constructors Constructor Description Aide()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SystemException
wrap(java.lang.Throwable t)
Converts an exception to SystemException or OperationException depending on whether t implements Expectable.static SystemException
wrap(java.lang.Throwable t, int code)
Converts an exception to SystemException or OperationException depending on whether t implements Expectable.static SystemException
wrap(java.lang.Throwable t, int code, java.lang.Object fmtArg)
Converts an exception to SystemException or OperationException depending on whether t implements Expectable.static SystemException
wrap(java.lang.Throwable t, int code, java.lang.Object[] fmtArgs)
Converts an exception to SystemException or OperationException depending on whether t implements Expectable.static SystemException
wrap(java.lang.Throwable t, java.lang.String msg)
Converts an exception to SystemException or OperationException depending on whether t implements Expectable.
-
-
-
Method Detail
-
wrap
public static SystemException wrap(java.lang.Throwable t)
Converts an exception to SystemException or OperationException depending on whether t implements Expectable.
-
wrap
public static SystemException wrap(java.lang.Throwable t, java.lang.String msg)
Converts an exception to SystemException or OperationException depending on whether t implements Expectable.
-
wrap
public static SystemException wrap(java.lang.Throwable t, int code, java.lang.Object[] fmtArgs)
Converts an exception to SystemException or OperationException depending on whether t implements Expectable.
-
wrap
public static SystemException wrap(java.lang.Throwable t, int code, java.lang.Object fmtArg)
Converts an exception to SystemException or OperationException depending on whether t implements Expectable.
-
wrap
public static SystemException wrap(java.lang.Throwable t, int code)
Converts an exception to SystemException or OperationException depending on whether t implements Expectable.
-
-