JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/ExceptionList.java
2017-02-10 17:37:42 +01:00

15 lines
293 B
Java
Executable File

package de.dhbwstuttgart.syntaxtree;
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPH;
import java.util.List;
public class ExceptionList
{
private List<RefTypeOrTPH> exceptions;
public ExceptionList(List<RefTypeOrTPH> exceptions){
this.exceptions = exceptions;
}
}