invalidsmilexception.java

来自「openwave公司的用于彩信开发的MM7协议实现java原代码,决对超值.」· Java 代码 · 共 22 行

JAVA
22
字号
// EDITOR NOTE: Please set number of columns to 100 in ur editor.package com.openwave.mms.content;/** * This exception is thrown when SMIL synthesis or parsing fails. */public class InvalidSmilException extends ContentException {    /**     * This constructor takes a reason string and wraps another exception.     *     * @param reason The reason for throwing this exception.     * @param exception The exception wrapped within this exception.     */    InvalidSmilException( String reason, Throwable exception ) {        super( reason, exception );    }}

⌨️ 快捷键说明

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