SVN__UnknownError.st
author fm
Wed, 23 Sep 2009 18:49:23 +0200
changeset 68 502896d74afc
child 150 ad5db50b457b
permissions -rw-r--r--
initial checkin

"{ Package: 'cvut:stx/goodies/libsvn' }"

"{ NameSpace: SVN }"

Error subclass:#UnknownError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SVN-Exceptions'
!

!UnknownError class methodsFor:'documentation'!

version_SVN
    ^'$Id$'
! !

!UnknownError class methodsFor:'matching'!

matchPattern
    "Superclass SVN::Error class says that I am responsible to implement this method"

    ^'*'

    "Created: / 03-10-2008 / 17:18:59 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

matchesErrorString: aString

    ^false

    "Created: / 03-10-2008 / 17:18:19 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!UnknownError class methodsFor:'documentation'!

version
    ^ '$Header$'
! !