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

42 lines
1.0 KiB
Java
Executable File

// ino.module.SCStatementException.8580.package
package de.dhbwstuttgart.myexception;
// ino.end
// ino.module.SCStatementException.8580.import
import de.dhbwstuttgart.typeinference.Menge;
// 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>();
// ino.end
// ino.method.get_exlist.23925.definition
public Menge<SCExcept> get_exlist()
// 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