KneobaseException.java from Kneobase at Krugle
Show KneobaseException.java syntax highlighted
/*
* Created on May 14, 2004
*
*/
package com.kneobase;
/**
* @author Gustavo Nestares
* @author Ernesto De Santis <a href="mailto:ernesto.desantis@colaborativa.net">ernesto.desantis@colaborativa.net</a>
*
*/
public class KneobaseException extends Exception {
public KneobaseException(String message) {
super(message);
}
public KneobaseException(Throwable innerException) {
super(innerException);
}
public KneobaseException(String message, Throwable innerException) {
super(message, innerException);
}
}
See more files for this project here