javax.usb.UsbAbortException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of usb-api Show documentation
Show all versions of usb-api Show documentation
Java API for communicating with devices that are attached via USB
The newest version!
package javax.usb;
/**
* Copyright (c) 1999 - 2001, International Business Machines Corporation.
* All Rights Reserved.
*
* This software is provided and licensed under the terms and conditions
* of the Common Public License:
* http://oss.software.ibm.com/developerworks/opensource/license-cpl.html
*/
/**
* Exception indicating a submission was aborted.
*
* Submissions are normally aborted via the
* {@link javax.usb.UsbPipe#abortAllSubmissions() abortAllSubmissions} method.
* @author Dan Streetman
*/
public class UsbAbortException extends UsbException
{
/**
* Constructor.
*/
public UsbAbortException() { super(); }
/**
* Constructor.
* @param s The detail message.
*/
public UsbAbortException(String s) { super(s); }
}