SVN__NonExistentURLError.st
changeset 36 d47a62a748e9
child 154 489aa0c9d743
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__NonExistentURLError.st	Wed Sep 23 18:46:12 2009 +0200
@@ -0,0 +1,32 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+Error subclass:#NonExistentURLError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Exceptions'
+!
+
+!NonExistentURLError class methodsFor:'documentation'!
+
+version_SVN
+    ^'$Id$'
+! !
+
+!NonExistentURLError class methodsFor:'matching'!
+
+matchPattern
+    "Superclass SVN::Error class says that I am responsible to implement this method"
+
+    ^'*URL*non-existent in*'
+
+    "Created: / 03-10-2008 / 17:22:18 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!NonExistentURLError class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !