SVN__AuthorizationError.st
changeset 45 980619e56f53
child 182 c4f7ef9663d3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__AuthorizationError.st	Wed Sep 23 18:47:06 2009 +0200
@@ -0,0 +1,32 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+Error subclass:#AuthorizationError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Exceptions'
+!
+
+!AuthorizationError class methodsFor:'documentation'!
+
+version_SVN
+    ^'$Id$'
+! !
+
+!AuthorizationError class methodsFor:'matching'!
+
+matchPattern
+    "Superclass SVN::Error class says that I am responsible to implement this method"
+
+    ^'*authorization failed*'
+
+    "Created: / 03-10-2008 / 17:18:59 / Jan Vrany <vranyj1@fel.cvut.cz>"
+! !
+
+!AuthorizationError class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !