StreamError.st
author Claus Gittinger <cg@exept.de>
Fri, 02 Oct 2009 02:08:10 +0200
changeset 12092 4e065b823c40
parent 8509 b62464d549f5
child 12685 c3b1ec066773
child 17711 39faaaf888b4
permissions -rw-r--r--
added: #string

"
 COPYRIGHT (c) 2001 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

"{ Package: 'stx:libbasic' }"

ProceedableError subclass:#StreamError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions-Errors'
!

!StreamError class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2001 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    The parent of all stream errors.
"
! !

!StreamError class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/StreamError.st,v 1.6 2004-09-01 16:33:02 stefan Exp $'
! !