base64formatexception.java

来自「很棒的web服务器源代码」· Java 代码 · 共 24 行

JAVA
24
字号
// Base64FormatException.java// $Id: Base64FormatException.java,v 1.4 2000/08/16 21:37:48 ylafon Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.codec ;/** * Exception for invalid BASE64 streams. */public class Base64FormatException extends Exception {  /**   * Create that kind of exception   * @param msg The associated error message    */  public Base64FormatException(String msg) {	super(msg) ;  }}

⌨️ 快捷键说明

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