forked from JavaTX/JavaCompilerCore
42 lines
985 B
Java
42 lines
985 B
Java
|
// ino.module.SCMethodException.8579.package
|
||
|
package mycompiler.myexception;
|
||
|
// ino.end
|
||
|
// ino.module.SCMethodException.8579.import
|
||
|
import java.util.Vector;
|
||
|
// ino.end
|
||
|
|
||
|
|
||
|
|
||
|
// ino.class.SCMethodException.23899.declaration
|
||
|
public class SCMethodException extends Exception
|
||
|
// ino.end
|
||
|
// ino.class.SCMethodException.23899.body
|
||
|
{
|
||
|
// ino.attribute.serialVersionUID.23903.declaration
|
||
|
private static final long serialVersionUID = -3060025579851679412L;
|
||
|
// ino.end
|
||
|
|
||
|
// ino.attribute.exlist.23906.declaration
|
||
|
private Vector<SCExcept> exlist;
|
||
|
// ino.end
|
||
|
|
||
|
// ino.method.get_exlist.23909.definition
|
||
|
public Vector<SCExcept> get_exlist()
|
||
|
// ino.end
|
||
|
// ino.method.get_exlist.23909.body
|
||
|
{
|
||
|
return exlist;
|
||
|
}
|
||
|
// ino.end
|
||
|
|
||
|
// ino.method.set_exlist.23912.definition
|
||
|
public void set_exlist(Vector<SCExcept> list)
|
||
|
// ino.end
|
||
|
// ino.method.set_exlist.23912.body
|
||
|
{
|
||
|
exlist=list;
|
||
|
}
|
||
|
// ino.end
|
||
|
}
|
||
|
// ino.end
|