⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wrongamptypeexception.java

📁 一个用java写的地震分析软件(无源码)-used to write a seismic analysis software (without source)
💻 JAVA
字号:
package org.trinet.jasi;

/**
 * Exception class that gets thrown when a mag method is passed an inapproriate
 * Amplitude object for the type of magnitude it calculates. For example: if you
 * pass an acceleration amp to an ML calculation class.
 *
 * Created: Tue Jun  6 11:07:09 2000
 *
 * @author Doug Given
 * @version */

public class WrongAmpTypeException extends Exception {
    
    public WrongAmpTypeException (String msg) {
	super (msg);
    }    
} // WrongAmpTypeException

⌨️ 快捷键说明

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