Class DexException

All Implemented Interfaces:
Serializable

public class DexException extends RuntimeException
See Also:
  • Constructor Details

    • DexException

      public DexException()
    • DexException

      public DexException(String message)
      Parameters:
      message -
    • DexException

      public DexException(Throwable cause)
      Parameters:
      cause -
    • DexException

      public DexException(String message, Throwable cause)
      Parameters:
      message -
      cause -
    • DexException

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

      new DexException(String.format(messageFormat, args), cause);

      Parameters:
      cause -
      messageFormat -
      args -
    • DexException

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

      new DexException(String.format(messageFormat, args));

      Parameters:
      messageFormat -
      args -