WriteError.st
changeset 8728 d70396dc4e96
parent 8067 f2369201d580
child 17157 094fcff6a403
child 17711 39faaaf888b4
equal deleted inserted replaced
8727:533d79aac561 8728:d70396dc4e96
     1 "{ Encoding: utf8 }"
     1 "
       
     2  COPYRIGHT (c) 2004 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     2 
    12 
     3 "{ Package: 'stx:libbasic' }"
    13 "{ Package: 'stx:libbasic' }"
     4 
    14 
     5 StreamError subclass:#WriteError
    15 StreamError subclass:#WriteError
     6 	instanceVariableNames:''
    16 	instanceVariableNames:''
     7 	classVariableNames:''
    17 	classVariableNames:''
     8 	poolDictionaries:''
    18 	poolDictionaries:''
     9 	category:'Kernel-Exceptions-Errors'
    19 	category:'Kernel-Exceptions-Errors'
    10 !
    20 !
    11 
    21 
       
    22 !WriteError class methodsFor:'documentation'!
       
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 2004 by eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 ! !
    12 
    37 
    13 !WriteError class methodsFor:'documentation'!
    38 !WriteError class methodsFor:'documentation'!
    14 
    39 
    15 version
    40 version
    16     ^ '$Header: /cvs/stx/stx/libbasic/WriteError.st,v 1.1 2004-03-04 16:43:28 cg Exp $'
    41     ^ '$Header: /cvs/stx/stx/libbasic/WriteError.st,v 1.2 2005-02-02 11:04:48 cg Exp $'
    17 ! !
    42 ! !