SourceCodeManagerError.st
author Claus Gittinger <cg@exept.de>
Thu, 05 Mar 2020 11:17:28 +0100
changeset 4561 eace75531554
parent 4283 2bd472dd7b62
permissions -rw-r--r--
#UI_ENHANCEMENT by cg class: SourceCodeManagerUtilities changed: #compareClassWithRepository:askForRevision: typos: genitive of class is class's - not classes.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1987
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     1
"
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     3
              All Rights Reserved
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     4
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     5
 This software is furnished under a license and may be used
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     6
 only in accordance with the terms of that license and with the
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     8
 be provided or otherwise made available to, or used by, any
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
     9
 other person.  No title to or ownership of the software is
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    10
 hereby transferred.
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    11
"
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
4283
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    14
"{ NameSpace: Smalltalk }"
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    15
2474
e2ae4aa96602 class definition
Stefan Vogel <sv@exept.de>
parents: 1987
diff changeset
    16
ProceedableError subclass:#SourceCodeManagerError
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
	category:'System-SourceCodeManagement'
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    21
!
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    22
4283
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    23
SourceCodeManagerError subclass:#TagAlreadyExists
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    24
	instanceVariableNames:''
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    25
	classVariableNames:''
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    26
	poolDictionaries:''
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    27
	privateIn:SourceCodeManagerError
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    28
!
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    29
1987
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    30
!SourceCodeManagerError class methodsFor:'documentation'!
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    31
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    32
copyright
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    33
"
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    34
 COPYRIGHT (c) 2006 by eXept Software AG
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    35
              All Rights Reserved
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    36
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    37
 This software is furnished under a license and may be used
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    38
 only in accordance with the terms of that license and with the
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    39
 inclusion of the above copyright notice.   This software may not
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    40
 be provided or otherwise made available to, or used by, any
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    41
 other person.  No title to or ownership of the software is
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    42
 hereby transferred.
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    43
"
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    44
! !
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    45
4283
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    46
!SourceCodeManagerError class methodsFor:'class access'!
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    47
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    48
tagAlreadyExists
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    49
    ^ TagAlreadyExists
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    50
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    51
    "Created: / 05-12-2017 / 21:15:18 / cg"
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    52
! !
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    53
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    54
!SourceCodeManagerError::TagAlreadyExists class methodsFor:'documentation'!
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    55
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    56
documentation
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    57
"
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    58
    documentation to be added.
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    59
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    60
    [author:]
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    61
        cg
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    62
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    63
    [instance variables:]
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    64
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    65
    [class variables:]
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    66
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    67
    [see also:]
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    68
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    69
"
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    70
! !
2474
e2ae4aa96602 class definition
Stefan Vogel <sv@exept.de>
parents: 1987
diff changeset
    71
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    72
!SourceCodeManagerError class methodsFor:'documentation'!
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    73
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    74
version
4283
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    75
    ^ '$Header$'
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    76
! !
4283
2bd472dd7b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 2474
diff changeset
    77