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

15 lines
293 B
Java
Raw Normal View History

2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree;
2017-02-10 16:37:42 +00:00
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPH;
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
{
2017-02-10 16:37:42 +00:00
private List<RefTypeOrTPH> exceptions;
2016-12-07 13:32:48 +00:00
2017-02-10 16:37:42 +00:00
public ExceptionList(List<RefTypeOrTPH> exceptions){
2016-12-07 13:32:48 +00:00
this.exceptions = exceptions;
2013-10-18 11:33:46 +00:00
}
}