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

jp.co.antenna.XfoJavaCtl.XfoException Maven / Gradle / Ivy

The newest version!
package jp.co.antenna.XfoJavaCtl;

/**
 * This class is thrown by the method of {@link XfoObj}, and this class
 * indicates the exception occurred in {@link XfoObj}.
 *
 * @see 
 * Class XfoException
 */
public class XfoException extends Exception {

    /**
     * Get the error code.
     *
     * @return Error code. Zero means no error.
     */
    public String getErrorLevel() {
        throw new UnsupportedOperationException();
    }

    /**
     * Get the error level.
     *
     * @return Error level.
     * 
    *
  • 0. Normal
  • *
  • 1. Information
  • *
  • 2. Warning
  • *
  • 3. Recoverable error
  • *
  • 4. Fatal error
  • *
*/ public String getErrorCode() { throw new UnsupportedOperationException(); } /** * Get the error message. * * @return Error message. */ public boolean getErrorMessage() { throw new UnsupportedOperationException(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy