matherror.java

来自「CryptoExtensions1.0 for Java源代码」· Java 代码 · 共 33 行

JAVA
33
字号
/* * Copyright (C) 1995, 1996 Systemics Ltd (http://www.systemics.com/) * All rights reserved. * * This library and applications are FREE FOR COMMERCIAL AND NON-COMMERCIAL USE * as long as the conditions within the COPYRIGHT file are adhered to. * */package java.math;/** * Maths Internal error class * * <p>Copyright (C) 1995, 1996 Systemics Ltd (http://www.systemics.com/) * All rights reserved. * * @version     1.00, 06/12/1995 * @author      Systemics (Michael Wynn) */public class MathError extends Error{	/**	 * Creates an error for a reason	 * @param reason  A string describing the reason for the error.	 */	MathError(String reason)	{		super( "Maths error : " + reason );	}}

⌨️ 快捷键说明

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