InvalidTypeError.st
author Claus Gittinger <cg@exept.de>
Wed, 03 Apr 2013 20:53:03 +0200
changeset 15054 1667e3fe9e8b
parent 14470 04031f10df46
child 18011 deb0c3355881
permissions -rw-r--r--
class: Autoload changed: #autoload when autoloading a class, make sure any extensions of the classes package are also loaded. If a projectDefinition is present, let it load them; otherwise, look for a file named \"extensions.st\" where the autoloaded class is loaded from. This helps with saved code, which has not yet been packaged correctly.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14470
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2012 by eXept Software AG
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
ExecutionError subclass:#InvalidTypeError
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Kernel-Exceptions-ExecutionErrors'
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!InvalidTypeError class methodsFor:'documentation'!
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2012 by eXept Software AG
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    Common error raised when some object has an unexpected type
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
"
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
! !
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
!InvalidTypeError class methodsFor:'initialization'!
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
initialize
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    NotifierString := 'if/while on non-boolean receiver'.
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
! !
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
!InvalidTypeError class methodsFor:'documentation'!
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
version
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    ^ '$Header: /cvs/stx/stx/libbasic/InvalidTypeError.st,v 1.1 2012-11-02 09:19:52 cg Exp $'
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
!
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
version_CVS
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    ^ '$Header: /cvs/stx/stx/libbasic/InvalidTypeError.st,v 1.1 2012-11-02 09:19:52 cg Exp $'
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
! !
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
04031f10df46 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
InvalidTypeError initialize!