Author: jbq
Date: Sat Apr 14 16:17:54 2007
New Revision: 528889
URL: http://svn.apache.org/viewvc?view=rev&rev=528889
Log:
NotImplementedException not in JDK 1.4
Modified:
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/resource/WebExternalResourceStream.java
Modified:
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/resource/WebExternalResourceStream.java
URL:
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/resource/WebExternalResourceStream.java?view=diff&rev=528889&r1=528888&r2=528889
==============================================================================
---
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/resource/WebExternalResourceStream.java
(original)
+++
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/resource/WebExternalResourceStream.java
Sat Apr 14 16:17:54 2007
@@ -67,12 +67,12 @@
}
/**
- * Not implemented, throws [EMAIL PROTECTED] NotImplementedException}
+ * Not implemented, throws [EMAIL PROTECTED] WicketRuntimeException}
* @see org.apache.wicket.util.resource.IResourceStream#length()
*/
public long length()
{
- throw new NotImplementedException();
+ throw new WicketRuntimeException("Not implemented");
}
public void close() throws IOException