All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lejos.hardware.DeviceException Maven / Gradle / Ivy

Go to download

leJOS (pronounced like the Spanish word "lejos" for "far") is a tiny Java Virtual Machine. In 2013 it was ported to the LEGO EV3 brick.

The newest version!
package lejos.hardware;

/**
 * Exception thrown when errors are detected in a sensor device state.
 * @author andy
 *
 */
public class DeviceException extends RuntimeException
{
    /**
     * 
     */
    private static final long serialVersionUID = 5846698127613306496L;

    public DeviceException()
    {
    }

    public DeviceException(String message)
    {
        super (message);
    }

    public DeviceException(Throwable cause)
    {
        super (cause);
    }

    public DeviceException(String message, Throwable cause)
    {
        super (message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy