Implementato NodeSequence e aggiunto alcuni costruttori alle eccezioni

This commit is contained in:
2014-03-30 16:56:16 +02:00
parent 148933ac58
commit c25afb02a2
8 changed files with 294 additions and 2 deletions

View File

@@ -11,4 +11,7 @@ public class EmptyStackException extends RuntimeException {
public EmptyStackException(){
super("Stack Empty");
}
public EmptyStackException(String msg){
super(msg);
}
}