Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOURIHandler.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOURIHandler.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOURIHandler.java
index ef8cb8884a..72d6d01afc 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOURIHandler.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOURIHandler.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Eike Stepper - initial API and implementation
* Victor Roldan Betancort - maintenance
@@ -90,12 +90,12 @@ public class CDOURIHandler implements URIHandler
public InputStream createInputStream(URI uri, Map<?, ?> options) throws IOException
{
- throw new UnsupportedOperationException();
+ throw new UnsupportedOperationException("URI: " + uri);
}
public OutputStream createOutputStream(URI uri, Map<?, ?> options) throws IOException
{
- throw new UnsupportedOperationException();
+ throw new UnsupportedOperationException("URI: " + uri);
}
public Map<String, ?> contentDescription(URI uri, Map<?, ?> options) throws IOException

Back to the top