Package dalvik.system
Class PotentialDeadlockError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- java.lang.VirtualMachineError
-
- dalvik.system.PotentialDeadlockError
-
- All Implemented Interfaces:
Serializable
public class PotentialDeadlockError extends VirtualMachineError
Is thrown when the VM identifies a potential deadlock.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PotentialDeadlockError()Creates a new exception instance and initializes it with default values.PotentialDeadlockError(String detailMessage)Creates a new exception instance and initializes it with a given message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PotentialDeadlockError
public PotentialDeadlockError()
Creates a new exception instance and initializes it with default values.
-
PotentialDeadlockError
public PotentialDeadlockError(String detailMessage)
Creates a new exception instance and initializes it with a given message.- Parameters:
detailMessage- the error message
-
-