Package jminusminus
Class CLExceptionInfo
java.lang.Object
jminusminus.CLExceptionInfo
Representation of exception_table entry structure.
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionCLExceptionInfo(int startPC, int endPC, int handlerPC, int catchType) Construct a CLExceptionInfo object.
- 
Method SummaryModifier and TypeMethodDescriptionvoidwrite(CLOutputStream out) Write the contents of this object to the specified output stream.
- 
Field Details- 
startPCpublic int startPCexception_table_entry.start_pc item.
- 
endPCpublic int endPCexception_table_entry.end_pc item.
- 
handlerPCpublic int handlerPCexception_table_entry.handler_pc item.
- 
catchTypepublic int catchTypeexception_table_entry.catch_type item.
 
- 
- 
Constructor Details- 
CLExceptionInfopublic 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- 
writeWrite the contents of this object to the specified output stream.- Parameters:
- out- output stream.
- Throws:
- IOException- if an error occurs while writing.
 
 
-