📄 malformeddrmcontentexception.java
字号:
package com.openwave.mms.content;import com.openwave.mms.content.ContentException;/** * This exception is thrown when the DRM content is malformed. */public class MalformedDRMContentException extends ContentException { /** * This constructor takes a reason string as input. * * @param reason The reason for throwing this exception. */ MalformedDRMContentException( String reason ) { super( reason ); } /** * This constructor takes a reason string as input. * * @param reason The reason for throwing this exception. * @param exception The exception wrapped in this exception. */ MalformedDRMContentException( String reason, Throwable exception ) { super( reason, exception ); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -