Implementazione parziale di tree

This commit is contained in:
2014-04-07 15:55:11 +02:00
parent 7f3a0bfc24
commit 7fafffa1c5
5 changed files with 198 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package exceptions;
/**
* Created with MONSTER.
* User: xgiovio
* Date: 05/03/14
* Time: 0.09
*/
public class EmptyTreeException extends RuntimeException {
public EmptyTreeException(){
super("Empty Tree");
}
public EmptyTreeException(String msg){
super(msg);
}
}