gnu.io.UnSupportedLoggerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jrxtx Show documentation
Show all versions of jrxtx Show documentation
jRxTx is a library for Java serial communication.
/*
* Copyright 1997-2009 by Trent Jarvi and others
* Copyright 1998 Kevin Hester, [email protected]
* Copyright 2016 Fraunhofer ISE and others
*
* This file is part of jRxTx.
* jRxTx is a fork of RXTX originally maintained by Trent Jarvi.
*
* jRxTx is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2.1 of the License, or
* (at your option) any later version.
*
* jRxTx is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with jRxTx. If not, see .
*
*/
package gnu.io;
/**
* Exception thrown when a method does not support the requested functionality.
*
*/
public class UnSupportedLoggerException extends Exception {
/**
* create an instances with no message about why the Exception was thrown.
*/
public UnSupportedLoggerException() {
super();
}
/**
* create an instance with a message about why the Exception was thrown.
*
* @param str
* A detailed message explaining the reason for the Exception.
*/
public UnSupportedLoggerException(String str) {
super(str);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy