MethodNotAppropriateError.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 19 Jan 2013 01:30:00 +0000
branchjv
changeset 18011 deb0c3355881
parent 17994 d51ebd1d3af0
parent 14460 0563c789b287
child 18113 92b4242b2b0b
permissions -rw-r--r--
Merged branch 'default' (CVS HEAD)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14460
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2012 by eXept Software AG
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
ExecutionError subclass:#MethodNotAppropriateError
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Kernel-Exceptions-ExecutionErrors'
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!MethodNotAppropriateError class methodsFor:'documentation'!
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2012 by eXept Software AG
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
! !
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!MethodNotAppropriateError class methodsFor:'initialization'!
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
initialize
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    NotifierString := 'method is not appropriate'.
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    "Modified: / 02-11-2012 / 09:54:51 / cg"
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
! !
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
!MethodNotAppropriateError class methodsFor:'documentation'!
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
version
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    ^ '$Header: /cvs/stx/stx/libbasic/MethodNotAppropriateError.st,v 1.1 2012-11-02 08:57:37 cg Exp $'
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
!
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
version_CVS
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    ^ '$Header: /cvs/stx/stx/libbasic/MethodNotAppropriateError.st,v 1.1 2012-11-02 08:57:37 cg Exp $'
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
! !
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
0563c789b287 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
MethodNotAppropriateError initialize!