aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/javax/print/URIException.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/javax/print/URIException.java')
-rw-r--r--libjava/classpath/javax/print/URIException.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/libjava/classpath/javax/print/URIException.java b/libjava/classpath/javax/print/URIException.java
index 9b22bdf..cedcbaa 100644
--- a/libjava/classpath/javax/print/URIException.java
+++ b/libjava/classpath/javax/print/URIException.java
@@ -41,15 +41,15 @@ package javax.print;
import java.net.URI;
/**
- * <code>URIException</code> specifies methods a specific subclass of
- * {@link javax.print.PrintException} may implement to provide further
+ * <code>URIException</code> specifies methods a specific subclass of
+ * {@link javax.print.PrintException} may implement to provide further
* informations of printing errors if URI problems are involved.
* <p>
- * There exists no <code>PrintException</code> class implementing this
- * interface. Providing this extension in <code>PrintException</code>
- * subclasses is left to the concrete print service implementation.
+ * There exists no <code>PrintException</code> class implementing this
+ * interface. Providing this extension in <code>PrintException</code>
+ * subclasses is left to the concrete print service implementation.
* </p>
- *
+ *
* @author Michael Koch (konqueror@gmx.de)
*/
public interface URIException
@@ -58,30 +58,30 @@ public interface URIException
* Indicates that the provided <code>URI</code> is not accessible.
*/
int URIInaccessible = 1;
-
+
/**
* Indicates any other problem which is not defined by
* the other reason constants.
*/
int URIOtherProblem = -1;
-
+
/**
* Indicates that the print service does not support a specific
* uri scheme (for example the ftp scheme).
*/
int URISchemeNotSupported = 2;
-
+
/**
* Returns the reason for this exception as
* predefined constants in this interface.
- *
+ *
* @return The reason.
*/
int getReason();
-
+
/**
* Returns the unsupported <code>URI</code> which caused this exception.
- *
+ *
* @return The unsupported <code>URI</code>.
*/
URI getUnsupportedURI();