WrongProceedabilityError.st
changeset 25082 7c8ec60c5081
parent 7586 63e4900c8931
child 25083 145751b52d1a
equal deleted inserted replaced
25081:44d03bc3255a 25082:7c8ec60c5081
       
     1 "{ Encoding: utf8 }"
       
     2 
     1 "
     3 "
     2  COPYRIGHT (c) 1999 by eXept Software AG
     4  COPYRIGHT (c) 1999 by eXept Software AG
     3               All Rights Reserved
     5               All Rights Reserved
     4 
     6 
     5  This software is furnished under a license and may be used
     7  This software is furnished under a license and may be used
     7  inclusion of the above copyright notice.   This software may not
     9  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
    10  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
    11  other person.  No title to or ownership of the software is
    10  hereby transferred.
    12  hereby transferred.
    11 "
    13 "
       
    14 "{ Package: 'stx:libbasic' }"
    12 
    15 
    13 
    16 "{ NameSpace: Smalltalk }"
    14 
       
    15 "{ Package: 'stx:libbasic' }"
       
    16 
    17 
    17 SignalError subclass:#WrongProceedabilityError
    18 SignalError subclass:#WrongProceedabilityError
    18 	instanceVariableNames:''
    19 	instanceVariableNames:''
    19 	classVariableNames:''
    20 	classVariableNames:''
    20 	poolDictionaries:''
    21 	poolDictionaries:''
    58     NotifierString := 'attempt to raise a nonproceedable signal proceedable'.
    59     NotifierString := 'attempt to raise a nonproceedable signal proceedable'.
    59 
    60 
    60     "
    61     "
    61      self initialize
    62      self initialize
    62     "
    63     "
       
    64 ! !
    63 
    65 
       
    66 !WrongProceedabilityError methodsFor:'accessing'!
    64 
    67 
       
    68 description
       
    69     ^ super description , ': ', self parameter name
    65 ! !
    70 ! !
    66 
    71 
    67 !WrongProceedabilityError class methodsFor:'documentation'!
    72 !WrongProceedabilityError class methodsFor:'documentation'!
    68 
    73 
    69 version
    74 version
    70     ^ '$Header: /cvs/stx/stx/libbasic/WrongProceedabilityError.st,v 1.4 2003-08-29 19:14:38 cg Exp $'
    75     ^ '$Header$'
    71 ! !
    76 ! !
    72 
    77 
       
    78 
    73 WrongProceedabilityError initialize!
    79 WrongProceedabilityError initialize!