InvalidOperationError.st
changeset 25171 f6bc2bf3ddda
parent 8728 d70396dc4e96
equal deleted inserted replaced
25170:534d55127523 25171:f6bc2bf3ddda
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
       
    12 "{ Package: 'stx:libbasic' }"
    12 
    13 
    13 "{ Package: 'stx:libbasic' }"
    14 "{ NameSpace: Smalltalk }"
    14 
    15 
    15 StreamError subclass:#InvalidOperationError
    16 StreamError subclass:#InvalidOperationError
    16 	instanceVariableNames:''
    17 	instanceVariableNames:''
    17 	classVariableNames:''
    18 	classVariableNames:''
    18 	poolDictionaries:''
    19 	poolDictionaries:''
    33  other person.  No title to or ownership of the software is
    34  other person.  No title to or ownership of the software is
    34  hereby transferred.
    35  hereby transferred.
    35 "
    36 "
    36 ! !
    37 ! !
    37 
    38 
       
    39 !InvalidOperationError class methodsFor:'initialization'!
       
    40 
       
    41 initialize
       
    42     NotifierString := 'unsupported file operation'.
       
    43 ! !
       
    44 
    38 !InvalidOperationError class methodsFor:'documentation'!
    45 !InvalidOperationError class methodsFor:'documentation'!
    39 
    46 
    40 version
    47 version
    41     ^ '$Header: /cvs/stx/stx/libbasic/InvalidOperationError.st,v 1.2 2005-02-02 11:02:30 cg Exp $'
    48     ^ '$Header$'
    42 ! !
    49 ! !
       
    50 
       
    51 
       
    52 InvalidOperationError initialize!