Implementazione parziale di tree
This commit is contained in:
17
exceptions/EmptyTreeException.java
Normal file
17
exceptions/EmptyTreeException.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user