unsupportedtypeexception.java

来自「A Java Framework for connecting to and e」· Java 代码 · 共 20 行

JAVA
20
字号
/*
 * UnsupportedTypeException.java
 *
 * Created on 14. November 2004, 15:55
 */

package com.libGPS4j2me.devices.StdGPS.exceptions;


/**
 * Is being thrown when NMEA type is not recognized by parser.
 *
 * @author  Dominik Schmidt
 */
public class UnsupportedTypeException extends Exception {
    public UnsupportedTypeException(String msg) {
        super(msg);
    }    
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?