-
public interface URIException
接口URIException是一个mixin接口,可以实现PrintException
的子类来报告涉及URI地址的错误条件。 Print Service API没有定义实现接口URIException的任何打印异常类,这些类别由Print Service实现者自行决定。
-
-
Field Summary
Fields Modifier and Type Field 描述 static int
URIInaccessible
表示打印机无法访问URI地址。static int
URIOtherProblem
表示其他原因未明确确定的任何问题。static int
URISchemeNotSupported
表示打印机不支持URI地址中的URI方案(“http”,“ftp”等)。
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 int
getReason()
返回事件的原因。URI
getUnsupportedURI()
返回URI。
-
-
-
字段详细信息
-
URIInaccessible
static final int URIInaccessible
表示打印机无法访问URI地址。 例如,打印机可能会报告此错误,如果要获取打印数据,甚至无法建立与URI地址的连接。- 另请参见:
- Constant Field Values
-
URISchemeNotSupported
static final int URISchemeNotSupported
表示打印机不支持URI地址中的URI方案(“http”,“ftp”等)。- 另请参见:
- Constant Field Values
-
URIOtherProblem
static final int URIOtherProblem
表示其他原因未明确确定的任何问题。- 另请参见:
- Constant Field Values
-
-
方法详细信息
-
getUnsupportedURI
URI getUnsupportedURI()
返回URI。- 结果
- 该异常引起的URI。
-
getReason
int getReason()
返回事件的原因。- 结果
- 在此界面中枚举的预定义原因之一。
-
-