JavaCompilerCore/src/de/dhbwstuttgart/myexception/SCStatementException.java

42 lines
1.0 KiB
Java
Raw Normal View History

2013-10-18 13:33:46 +02:00
// ino.module.SCStatementException.8580.package
2014-09-04 16:35:44 +02:00
package de.dhbwstuttgart.myexception;
2013-10-18 13:33:46 +02:00
// ino.end
// ino.module.SCStatementException.8580.import
import de.dhbwstuttgart.typeinference.Menge;
2013-10-18 13:33:46 +02:00
// ino.end
// ino.class.SCStatementException.23915.declaration
public class SCStatementException extends Exception
// ino.end
// ino.class.SCStatementException.23915.body
{
// ino.attribute.serialVersionUID.23919.declaration
private static final long serialVersionUID = -5299461034178474235L;
// ino.end
// ino.attribute.exlist.23922.declaration
private Menge<SCExcept> exlist= new Menge<SCExcept>();
2013-10-18 13:33:46 +02:00
// ino.end
// ino.method.get_exlist.23925.definition
public Menge<SCExcept> get_exlist()
2013-10-18 13:33:46 +02:00
// ino.end
// ino.method.get_exlist.23925.body
{
return exlist;
}
// ino.end
// ino.method.addException.23928.definition
public void addException(SCExcept ex)
// ino.end
// ino.method.addException.23928.body
{
exlist.addElement(ex);
}
// ino.end
}
// ino.end