SVN__UnknownError.st
author Stefan Vogel <sv@exept.de>
Tue, 21 Jun 2011 16:58:24 +0200
changeset 610 2849e70bf648
parent 443 c14a72bdb2be
child 662 d40986ce144a
permissions -rw-r--r--
Rename SVN::Error to SVN::SvnError for stc compatibility

"{ Package: 'stx:libsvn' }"

"{ NameSpace: SVN }"

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


!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$'
!

version_CVS
    ^ '$Header$'
!

version_SVN
    ^'§Id: SVN__UnknownError.st 70 2009-04-16 12:47:44Z vranyj1 §'
! !