Class ExceptionSoftening.CatchInfo

java.lang.Object
com.mebigfatguy.fbcontrib.detect.ExceptionSoftening.CatchInfo
Enclosing class:
ExceptionSoftening

private static class ExceptionSoftening.CatchInfo extends 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 Details

    • catchStart

      private final int catchStart
    • catchFinish

      private int catchFinish
    • catchSignature

      private final String catchSignature
  • Constructor Details

    • CatchInfo

      public CatchInfo(int start, int finish, String signature)
  • Method Details

    • getStart

      public int getStart()
    • setFinish

      public void setFinish(int finish)
    • getFinish

      public int getFinish()
    • getSignature

      public String getSignature()
    • toString

      public String toString()
      Overrides:
      toString in class Object