18 lines
326 B
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);
|
|
}
|
|
}
|