Package jminusminus
Class CLExceptionInfo
java.lang.Object
jminusminus.CLExceptionInfo
Representation of exception_table entry structure.
-
Field Summary
-
Constructor Summary
ConstructorDescriptionCLExceptionInfo
(int startPC, int endPC, int handlerPC, int catchType) Construct a CLExceptionInfo object. -
Method Summary
Modifier and TypeMethodDescriptionvoid
write
(CLOutputStream out) Write the contents of this object to the specified output stream.
-
Field Details
-
startPC
public int startPCexception_table_entry.start_pc item. -
endPC
public int endPCexception_table_entry.end_pc item. -
handlerPC
public int handlerPCexception_table_entry.handler_pc item. -
catchType
public int catchTypeexception_table_entry.catch_type item.
-
-
Constructor Details
-
CLExceptionInfo
public CLExceptionInfo(int startPC, int endPC, int handlerPC, int catchType) Construct a CLExceptionInfo object.- Parameters:
startPC
- exception_table_entry.start_pc item.endPC
- exception_table_entry.end_pc item.handlerPC
- exception_table_entry.handler_pc item.catchType
- exception_table_entry.catch_type item.
-
-
Method Details
-
write
Write the contents of this object to the specified output stream.- Parameters:
out
- output stream.- Throws:
IOException
- if an error occurs while writing.
-