JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/ExceptionList.java

15 lines
278 B
Java
Raw Normal View History

2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree;
import de.dhbwstuttgart.syntaxtree.type.RefType;
2013-10-18 11:33:46 +00:00
2016-12-07 13:32:48 +00:00
import java.util.List;
2013-10-18 11:33:46 +00:00
public class ExceptionList
{
2016-12-07 13:32:48 +00:00
private List<RefType> exceptions;
public ExceptionList(List<RefType> exceptions){
this.exceptions = exceptions;
2013-10-18 11:33:46 +00:00
}
}