41 lines
1.0 KiB
Java
Executable File
41 lines
1.0 KiB
Java
Executable File
// ino.module.SCClassBodyException.8575.package
|
|
package de.dhbwstuttgart.myexception;
|
|
// ino.end
|
|
// ino.module.SCClassBodyException.8575.import
|
|
import java.util.Vector;
|
|
// ino.end
|
|
|
|
|
|
|
|
// ino.class.SCClassBodyException.23800.declaration
|
|
public class SCClassBodyException extends Exception
|
|
// ino.end
|
|
// ino.class.SCClassBodyException.23800.body
|
|
{
|
|
// ino.attribute.serialVersionUID.23804.declaration
|
|
private static final long serialVersionUID = 5147876377267075722L;
|
|
// ino.end
|
|
// ino.attribute.exlist.23807.declaration
|
|
private Vector<SCExcept> exlist=new Vector<SCExcept>();
|
|
// ino.end
|
|
|
|
// ino.method.addException.23810.definition
|
|
public void addException(SCExcept ex)
|
|
// ino.end
|
|
// ino.method.addException.23810.body
|
|
{
|
|
exlist.addElement(ex);
|
|
}
|
|
// ino.end
|
|
|
|
// ino.method.get_exlist.23813.definition
|
|
public Vector<SCExcept> get_exlist()
|
|
// ino.end
|
|
// ino.method.get_exlist.23813.body
|
|
{
|
|
return exlist;
|
|
}
|
|
// ino.end
|
|
}
|
|
// ino.end
|