SourceCodeManagerError.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 30 Jan 2012 17:19:14 +0000
branchjv
changeset 3012 4f40b8304d54
parent 3011 1997ff6e7e55
child 3042 48e76977cdc3
permissions -rw-r--r--
Added InvalidChange
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
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    37
!SourceCodeManagerError class methodsFor:'documentation'!
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    38
0317eaf520d7 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    39
version
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    40
    ^ '$Id: SourceCodeManagerError.st 1872 2012-01-30 17:19:14Z vranyj1 $'
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    41
!
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    42
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    43
version_SVN
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    44
    ^ '$Id: SourceCodeManagerError.st 1872 2012-01-30 17:19:14Z vranyj1 $'
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    45
! !