SourceCodeManagerError.st
author Claus Gittinger <cg@exept.de>
Tue, 05 Dec 2017 15:49:48 +0100
changeset 4274 2b8ac98e311e
parent 2474 e2ae4aa96602
child 3011 1997ff6e7e55
child 4283 2bd472dd7b62
permissions -rw-r--r--
#FEATURE by cg class: AbstractSourceCodeManager class added: #knownTagsAndRevisionsForContainer:directory:module: comment/format in: #knownTagsAndRevisionsFor:
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
2474
e2ae4aa96602 class definition
Stefan Vogel <sv@exept.de>
parents: 1987
diff changeset
    14
ProceedableError subclass:#SourceCodeManagerError
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	category:'System-SourceCodeManagement'
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
!
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
1987
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    21
!SourceCodeManagerError class methodsFor:'documentation'!
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    22
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    23
copyright
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    24
"
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    26
              All Rights Reserved
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    27
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    28
 This software is furnished under a license and may be used
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    29
 only in accordance with the terms of that license and with the
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    31
 be provided or otherwise made available to, or used by, any
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    32
 other person.  No title to or ownership of the software is
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    33
 hereby transferred.
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    34
"
795a587f30db copyright
Claus Gittinger <cg@exept.de>
parents: 1455
diff changeset
    35
! !
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    36
2474
e2ae4aa96602 class definition
Stefan Vogel <sv@exept.de>
parents: 1987
diff changeset
    37
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    38
!SourceCodeManagerError class methodsFor:'documentation'!
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    39
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    40
version
2474
e2ae4aa96602 class definition
Stefan Vogel <sv@exept.de>
parents: 1987
diff changeset
    41
    ^ '$Header: /cvs/stx/stx/libbasic3/SourceCodeManagerError.st,v 1.3 2011-08-12 11:36:52 stefan Exp $'
1455
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    42
! !