34 lines
581 B
Plaintext
Executable File
34 lines
581 B
Plaintext
Executable File
/**
|
|
*
|
|
*/
|
|
package com.fp.alfresco.exception;
|
|
|
|
/**
|
|
* Excepción que manejará los errores que se producen dentro del API
|
|
* @author bpt
|
|
*
|
|
*/
|
|
public class ExceptionWebscript extends Exception {
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public ExceptionWebscript() {
|
|
super();
|
|
}
|
|
|
|
public ExceptionWebscript(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public ExceptionWebscript(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public ExceptionWebscript(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
}
|