public class

UnsupportedCommandException

extends Exception
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ com.digi.android.system.cpu.exception.UnsupportedCommandException

Class Overview

This exception indicates that you tried to execute an invalid operation related to the CPU management or configuration.

Summary

Constants
long serialVersionUID
Public Constructors
UnsupportedCommandException()
Constructs a UnsupportedCommandException.
UnsupportedCommandException(String message)
Constructs a UnsupportedCommandException with a detailed exception message.
UnsupportedCommandException(Throwable throwable)
Constructs a UnsupportedCommandException with the given parent exception.
UnsupportedCommandException(String message, Throwable throwable)
Constructs a UnsupportedCommandException with detailed message and parent exception.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Constants

public static final long serialVersionUID

Constant Value: -1 (0xffffffffffffffff)

Public Constructors

public UnsupportedCommandException ()

Constructs a UnsupportedCommandException.

public UnsupportedCommandException (String message)

Constructs a UnsupportedCommandException with a detailed exception message.

Parameters
message String: Additional message for the exception.

public UnsupportedCommandException (Throwable throwable)

Constructs a UnsupportedCommandException with the given parent exception.

Parameters
throwable Throwable: Parent exception.

public UnsupportedCommandException (String message, Throwable throwable)

Constructs a UnsupportedCommandException with detailed message and parent exception.

Parameters
message String: Additional message for the exception.
throwable Throwable: Parent exception.