cork.device
Class DeviceException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--cork.device.DeviceException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
I2CException

public class DeviceException
extends java.lang.RuntimeException

The abstract class is the basis for all device specific exception classes.

Version:
0.1.0
Author:
Brill Pappin
See Also:
Serialized Form

Constructor Summary
DeviceException()
          Constructs an Exception with no specified detail message.
DeviceException(java.lang.String message)
          Constructs an Exception with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DeviceException

public DeviceException()
Constructs an Exception with no specified detail message.
Since:
0.1.0

DeviceException

public DeviceException(java.lang.String message)
Constructs an Exception with the specified detail message.
Parameters:
message - java.lang.String the detail message.
Since:
0.1.0