blob: d6e9878dc3f2ad86d2579cc4c2dfc193a2a019ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
-- File: StdFail.cdl
-- Created: Thu May 7 16:47:43 1992
-- Author: Modelistation
-- <model@sdsun1>
---Copyright: Matra Datavision 1992
package StdFail
uses Standard
is
exception NotDone inherits Failure from Standard;
exception Undefined inherits Failure from Standard;
exception UndefinedDerivative inherits DomainError from Standard;
exception UndefinedValue inherits DomainError from Standard;
exception InfiniteSolutions inherits Failure from Standard;
end StdFail;
|