Package com.mebigfatguy.fbcontrib.detect
Class ExceptionSoftening.CatchInfo
- java.lang.Object
-
- com.mebigfatguy.fbcontrib.detect.ExceptionSoftening.CatchInfo
-
- Enclosing class:
- ExceptionSoftening
private static class ExceptionSoftening.CatchInfo extends java.lang.Object
holds information about a catch block the start and end pcs, as well as the exception signature. you can't always determine the end of a catch block, and in this case the value will be Integer.MAX_VALUE
-
-
Field Summary
Fields Modifier and Type Field Description private int
catchFinish
private java.lang.String
catchSignature
private int
catchStart
-
Constructor Summary
Constructors Constructor Description CatchInfo(int start, int finish, java.lang.String signature)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFinish()
java.lang.String
getSignature()
int
getStart()
void
setFinish(int finish)
java.lang.String
toString()
-