/*
* Created on 03/08/2003
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package sce.list;
/**
* @author TOSHIBA
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class BoundaryException extends RuntimeException {
/**
*
*/
public BoundaryException() {
super();
}
/**
* @param arg0
*/
public BoundaryException(String arg0) {
super(arg0);
}
/**
* @param arg0
* @param arg1
*/
public BoundaryException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
/**
* @param arg0
*/
public BoundaryException(Throwable arg0) {
super(arg0);
}
}