PrimitiveFailure.st
author Claus Gittinger <cg@exept.de>
Thu, 24 Apr 2003 10:21:14 +0200
changeset 7232 1d05a293b8b0
parent 6210 d7039e2ae776
child 7586 63e4900c8931
permissions -rw-r--r--
comments
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5999
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libbasic' }"
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
ProceedableError subclass:#PrimitiveFailure
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5999
diff changeset
     7
	category:'Kernel-Exceptions-Errors'
5999
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5999
diff changeset
    10
!PrimitiveFailure class methodsFor:'documentation'!
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5999
diff changeset
    11
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5999
diff changeset
    12
documentation
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5999
diff changeset
    13
"
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6210
diff changeset
    14
    Raised when a primitive C-code method failed to perform its operation
6210
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5999
diff changeset
    15
    Typically, raised with bad arguments.
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5999
diff changeset
    16
"
d7039e2ae776 caetgory change and documentation added
Claus Gittinger <cg@exept.de>
parents: 5999
diff changeset
    17
! !
5999
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!PrimitiveFailure class methodsFor:'documentation'!
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
version
7232
1d05a293b8b0 comments
Claus Gittinger <cg@exept.de>
parents: 6210
diff changeset
    22
    ^ '$Header: /cvs/stx/stx/libbasic/PrimitiveFailure.st,v 1.3 2003-04-24 08:20:12 cg Exp $'
5999
05fbf8ac4eb0 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
! !