AssertionFailedError.st
author Claus Gittinger <cg@exept.de>
Mon, 08 Jun 2015 21:22:21 +0200
changeset 18465 e9e4bb62235f
parent 11184 53d91f16f7ae
child 17711 39faaaf888b4
child 20445 2f93befb3416
permissions -rw-r--r--
added isOrdered query
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10650
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2007 by eXept Software AG
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
11184
53d91f16f7ae made it proceedable
Claus Gittinger <cg@exept.de>
parents: 11159
diff changeset
    14
ProceedableError subclass:#AssertionFailedError
10650
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
11159
20e5de9571fc made it an error
Claus Gittinger <cg@exept.de>
parents: 10650
diff changeset
    18
	category:'Kernel-Exceptions-Errors'
10650
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!AssertionFailedError class methodsFor:'documentation'!
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2007 by eXept Software AG
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    Raised by failing assertions.
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
"
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
! !
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
!AssertionFailedError class methodsFor:'documentation'!
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
version
11184
53d91f16f7ae made it proceedable
Claus Gittinger <cg@exept.de>
parents: 11159
diff changeset
    46
    ^ '$Header: /cvs/stx/stx/libbasic/AssertionFailedError.st,v 1.3 2008-09-30 18:09:46 cg Exp $'
10650
fdec7f75c82e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
! !