IncompatibleMatrixError.st
author Claus Gittinger <cg@exept.de>
Sat, 02 May 2020 21:40:13 +0200
changeset 5476 7355a4b11cb6
parent 5378 8772b6346c58
permissions -rw-r--r--
#FEATURE by cg class: Socket class added: #newTCPclientToHost:port:domain:domainOrder:withTimeout: changed: #newTCPclientToHost:port:domain:withTimeout:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5378
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
     1
"{ Encoding: utf8 }"
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
     2
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
     3
"
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
     4
 COPYRIGHT (c) 2018 by eXept Software AG
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
     5
              All Rights Reserved
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
     6
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
     7
 This software is furnished under a license and may be used
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
     8
 only in accordance with the terms of that license and with the
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    10
 be provided or otherwise made available to, or used by, any
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    11
 other person.  No title to or ownership of the software is
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    12
 hereby transferred.
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    13
"
5089
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libbasic2' }"
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
"{ NameSpace: Smalltalk }"
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
DomainError subclass:#IncompatibleMatrixError
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	instanceVariableNames:''
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	classVariableNames:''
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	poolDictionaries:''
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
	category:'Kernel-Exceptions-Errors'
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
!IncompatibleMatrixError class methodsFor:'documentation'!
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
5378
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    27
copyright
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    28
"
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    29
 COPYRIGHT (c) 2018 by eXept Software AG
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    30
              All Rights Reserved
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    31
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    32
 This software is furnished under a license and may be used
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    33
 only in accordance with the terms of that license and with the
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    35
 be provided or otherwise made available to, or used by, any
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    36
 other person.  No title to or ownership of the software is
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    37
 hereby transferred.
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    38
"
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    39
!
8772b6346c58 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
    40
5089
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
documentation
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    Raised by certain matrix functions when the receiver or arg
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    is not of the appropriate form (eg. non-square, where a square matrix is expected).
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
"
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
! !
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
!IncompatibleMatrixError class methodsFor:'initialization'!
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
initialize
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    NotifierString := 'incompatible matrix'.
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
! !
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
!IncompatibleMatrixError methodsFor:'defaults'!
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
defaultResumeValue
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    "the default answer, if no one handles the query and the exception is resumed.
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
     Re-redefined to return nil instead of NaN."
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    ^ nil
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
    "Created: / 20-06-2017 / 12:02:19 / cg"
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
! !
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
!IncompatibleMatrixError class methodsFor:'documentation'!
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
version_CVS
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
    ^ '$Header$'
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
! !
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
f3fc05f21250 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
IncompatibleMatrixError initialize!