SVN__NonExistentURLError.st
author fm
Tue, 29 Sep 2009 17:17:28 +0200
changeset 154 489aa0c9d743
parent 36 d47a62a748e9
child 325 fab358cc7032
permissions -rw-r--r--
changed: #version_SVN

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

"{ NameSpace: SVN }"

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


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

version_CVS
    ^ '$Header$'
!

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