www.pudn.com > SSPP.rar > NoStudentsException.java
package edu.neu.sspp.exception;
public class NoStudentsException extends Exception {
public NoStudentsException() {
}
public NoStudentsException(String arg0) {
super(arg0);
}
public NoStudentsException(Throwable arg0) {
super(arg0);
}
public NoStudentsException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
}