upnpactionfailedexception.java
来自「国外的j2me播放器软件」· Java 代码 · 共 18 行
JAVA
18 行
package no.auc.one.portableplayer.communication.upnphosting;
/**
* Action Failed.
*
* May be used if current state of service prevents invoking this action.
*/
public final class UPnPActionFailedException extends
UPnPActionInvocationException
{
public UPnPActionFailedException(String message) {
super(new no.auc.one.portableplayer.communication.soap.SoapFault(
"http://schemas.xmlsoap.org/soap/envelope/",
"501",
message));
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?