-
public interface URIException
接口URIException
是mixin接口,PrintException
的子类可以实现该接口以报告涉及URI
地址的错误条件。 Print Service API未定义实现接口URIException
任何打印异常类,由打印服务实现者自行决定。
-
-
字段汇总
字段 变量和类型 字段 描述 static int
URIInaccessible
表示打印机无法访问URI
地址。static int
URIOtherProblem
表示由其他原因未明确指出的任何类型的问题。static int
URISchemeNotSupported
表示打印机不支持URI
地址中的URI
方案(“http”,“ftp”等)。
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 int
getReason()
返回此异常的原因。URI
getUnsupportedURI()
返回URI
。
-
-
-
字段详细信息
-
URIInaccessible
static final int URIInaccessible
表示打印机无法访问URI
地址。 例如,如果打印机获取打印数据并且甚至无法建立与URI
地址的连接,则可能会报告此错误。- 另请参见:
- 常数字段值
-
URISchemeNotSupported
static final int URISchemeNotSupported
表示打印机不支持URI
地址中的URI
方案(“http”,“ftp”等)。- 另请参见:
- 常数字段值
-
URIOtherProblem
static final int URIOtherProblem
表示由其他原因未明确指出的任何类型的问题。- 另请参见:
- 常数字段值
-
-
方法详细信息
-
getUnsupportedURI
URI getUnsupportedURI()
返回URI
。- 结果
-
URI
是导致此异常的原因
-
getReason
int getReason()
返回此异常的原因。- 结果
- 此接口中枚举的预定义原因之一
-
-