Class DexException

All Implemented Interfaces:
Serializable

public class DexException extends RuntimeException
See Also:
  • Constructor Details

    • DexException

      public DexException()
    • DexException

      public DexException(String message)
    • DexException

      public DexException(Throwable cause)
    • DexException

      public DexException(String message, Throwable cause)
    • DexException

      public DexException(Throwable cause, String messageFormat, Object... args)
      this is equals to new DexException(String.format(messageFormat, args), cause);
    • DexException

      public DexException(String messageFormat, Object... args)
      this is equals to new DexException(String.format(messageFormat, args));