Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
35 righe
1.1 KiB
35 righe
1.1 KiB
5 anni fa
|
/* */ package it.tref.signextractor.exception;
|
||
|
/* */
|
||
|
/* */ public class SignException extends Exception
|
||
|
/* */ {
|
||
|
/* */ private static final long serialVersionUID = -6038308982499757626L;
|
||
|
/* */
|
||
|
/* */ public SignException(String message)
|
||
|
/* */ {
|
||
|
/* 9 */ super(message);
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public SignException()
|
||
|
/* */ {
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public SignException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
|
||
|
/* */ {
|
||
|
/* 19 */ super(message, cause, enableSuppression, writableStackTrace);
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public SignException(String message, Throwable cause)
|
||
|
/* */ {
|
||
|
/* 24 */ super(message, cause);
|
||
|
/* */ }
|
||
|
/* */
|
||
|
/* */ public SignException(Throwable cause)
|
||
|
/* */ {
|
||
|
/* 29 */ super(cause);
|
||
|
/* */ }
|
||
|
/* */ }
|
||
|
|
||
|
/* Location: C:\liferay-sviluppo\portos2\git\portos-camel-document-processor\lib\tref-sign-exctractor-0.1.0.jar
|
||
|
* Qualified Name: it.tref.signextractor.exception.SignException
|
||
|
* JD-Core Version: 0.6.0
|
||
|
*/
|