SVN__AuthorizationError.st
author convert-repo
Tue, 09 Aug 2016 03:35:30 +0000
changeset 1178 3a6dad9479fd
parent 878 36ac36d32021
permissions -rw-r--r--
update tags
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
681
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
     1
"
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
     2
 Copyright (c) 2007-2010 Jan Vrany
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
     3
 Copyright (c) 2009-2010 eXept Software AG
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
     4
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
     5
 Permission is hereby granted, free of charge, to any person
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
     6
 obtaining a copy of this software and associated documentation
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
     7
 files (the 'Software'), to deal in the Software without
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
     8
 restriction, including without limitation the rights to use,
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
     9
 copy, modify, merge, publish, distribute, sublicense, and/or sell
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    10
 copies of the Software, and to permit persons to whom the
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    11
 Software is furnished to do so, subject to the following
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    12
 conditions:
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    13
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    14
 The above copyright notice and this permission notice shall be
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    15
 included in all copies or substantial portions of the Software.
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    16
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    17
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    18
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    19
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    20
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    21
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    22
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    23
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    24
 OTHER DEALINGS IN THE SOFTWARE.
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    25
"
455
da945760953e *** empty log message ***
fm
parents: 279
diff changeset
    26
"{ Package: 'stx:libsvn' }"
45
980619e56f53 initial checkin
fm
parents:
diff changeset
    27
980619e56f53 initial checkin
fm
parents:
diff changeset
    28
"{ NameSpace: SVN }"
980619e56f53 initial checkin
fm
parents:
diff changeset
    29
681
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    30
SVNError subclass:#AuthorizationError
45
980619e56f53 initial checkin
fm
parents:
diff changeset
    31
	instanceVariableNames:''
980619e56f53 initial checkin
fm
parents:
diff changeset
    32
	classVariableNames:''
980619e56f53 initial checkin
fm
parents:
diff changeset
    33
	poolDictionaries:''
980619e56f53 initial checkin
fm
parents:
diff changeset
    34
	category:'SVN-Exceptions'
980619e56f53 initial checkin
fm
parents:
diff changeset
    35
!
980619e56f53 initial checkin
fm
parents:
diff changeset
    36
681
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    37
!AuthorizationError class methodsFor:'documentation'!
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    38
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    39
copyright
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    40
"
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    41
 Copyright (c) 2007-2010 Jan Vrany
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    42
 Copyright (c) 2009-2010 eXept Software AG
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    43
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    44
 Permission is hereby granted, free of charge, to any person
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    45
 obtaining a copy of this software and associated documentation
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    46
 files (the 'Software'), to deal in the Software without
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    47
 restriction, including without limitation the rights to use,
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    48
 copy, modify, merge, publish, distribute, sublicense, and/or sell
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    49
 copies of the Software, and to permit persons to whom the
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    50
 Software is furnished to do so, subject to the following
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    51
 conditions:
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    52
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    53
 The above copyright notice and this permission notice shall be
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    54
 included in all copies or substantial portions of the Software.
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    55
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    56
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    57
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    58
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    59
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    60
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    61
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    62
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    63
 OTHER DEALINGS IN THE SOFTWARE.
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    64
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    65
"
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    66
! !
45
980619e56f53 initial checkin
fm
parents:
diff changeset
    67
980619e56f53 initial checkin
fm
parents:
diff changeset
    68
!AuthorizationError class methodsFor:'matching'!
980619e56f53 initial checkin
fm
parents:
diff changeset
    69
980619e56f53 initial checkin
fm
parents:
diff changeset
    70
matchPattern
980619e56f53 initial checkin
fm
parents:
diff changeset
    71
    "Superclass SVN::Error class says that I am responsible to implement this method"
980619e56f53 initial checkin
fm
parents:
diff changeset
    72
980619e56f53 initial checkin
fm
parents:
diff changeset
    73
    ^'*authorization failed*'
980619e56f53 initial checkin
fm
parents:
diff changeset
    74
980619e56f53 initial checkin
fm
parents:
diff changeset
    75
    "Created: / 03-10-2008 / 17:18:59 / Jan Vrany <vranyj1@fel.cvut.cz>"
980619e56f53 initial checkin
fm
parents:
diff changeset
    76
! !
980619e56f53 initial checkin
fm
parents:
diff changeset
    77
681
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    78
!AuthorizationError class methodsFor:'others'!
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    79
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    80
version_CVS
878
36ac36d32021 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 681
diff changeset
    81
    ^ '$Header$'
681
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    82
! !
abc2cab76ee2 Updates from SVN
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 455
diff changeset
    83
45
980619e56f53 initial checkin
fm
parents:
diff changeset
    84
!AuthorizationError class methodsFor:'documentation'!
980619e56f53 initial checkin
fm
parents:
diff changeset
    85
980619e56f53 initial checkin
fm
parents:
diff changeset
    86
version
878
36ac36d32021 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 681
diff changeset
    87
    ^ '$Header$'
182
c4f7ef9663d3 changed: #version_SVN
fm
parents: 45
diff changeset
    88
!
c4f7ef9663d3 changed: #version_SVN
fm
parents: 45
diff changeset
    89
c4f7ef9663d3 changed: #version_SVN
fm
parents: 45
diff changeset
    90
version_SVN
878
36ac36d32021 checkin to get version methods correct
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 681
diff changeset
    91
    ^ '§Id: SVN__AuthorizationError.st 362 2011-08-08 13:07:42Z vranyj1 §'
45
980619e56f53 initial checkin
fm
parents:
diff changeset
    92
! !