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

org.ocap.hardware.device.FeatureNotSupportedException Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version

package org.ocap.hardware.device;

/**
 * Thrown when an application attempts to query/set/get a feature
 * not supported on the device.
 */
public class FeatureNotSupportedException extends java.lang.Exception
{
   /**
    * Creates an FeatureNotSupportedException object. See the class
    * description for details of constructor parameters and default
    * values.  
    */
   public FeatureNotSupportedException()
   {	
     throw new RuntimeException("Not implemented");
   }

   /**
    * Creates an FeatureNotSupportedException object with a specified
    * reason string.
    *
    * @param message the reason why the exception was raised 
    */
   public FeatureNotSupportedException(String message)
    {
     throw new RuntimeException("Not implemented");
   }
}








© 2015 - 2024 Weber Informatics LLC | Privacy Policy