CompilationError.st
author Claus Gittinger <cg@exept.de>
Wed, 03 Apr 2013 19:02:47 +0200
changeset 3060 a5356f477e45
child 3063 221910736c8f
permissions -rw-r--r--
initial checkin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3060
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libcomp' }"
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
ProceedableError subclass:#CompilationError
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:'errorMessage'
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'System-Compiler'
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
!CompilationError class methodsFor:'documentation'!
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
version
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
    ^ '$Header: /cvs/stx/stx/libcomp/CompilationError.st,v 1.1 2013-04-03 17:02:47 cg Exp $'
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
!
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
version_CVS
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
    ^ '$Header: /cvs/stx/stx/libcomp/CompilationError.st,v 1.1 2013-04-03 17:02:47 cg Exp $'
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
! !
a5356f477e45 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20