Files
unisa_strutture_dati_2013_2014/exceptions/UndeletableNodeException.java

18 lines
326 B
Java

package exceptions;
/**
* Created with MONSTER.
* User: xgiovio
* Date: 05/03/14
* Time: 0.09
*/
public class UndeletableNodeException extends RuntimeException {
public UndeletableNodeException(){
super("Undeletable Node");
}
public UndeletableNodeException(String msg){
super(msg);
}
}