TranslatorException.java [src/utils] Revision: default Date:
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package utils;
/**
*
* @author Brad
*/
public class TranslatorException extends Exception {
public TranslatorException() {
super();
}
public TranslatorException(String message) {
super(message);
}
public TranslatorException(String message, Throwable cause) {
super(message, cause);
}
public TranslatorException(Throwable cause) {
super(cause);
}
}