hashexception.java

来自「JAVA的加密源程序」· Java 代码 · 共 20 行

JAVA
20
字号
/*Christoforos Pirillos @ Villanova University - May 1999based on code from the book "Java Network Programming" by Hughes*/package encryption;import java.io.*;/**Can either be created with no detail message or with a detail messagethat describes the cause of the exception*/public class HashException extends IOException {	public HashException() {	}	public HashException (String detail) {	super (detail);	}}

⌨️ 快捷键说明

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