home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
misc_programming
/
MATH
/
EFE_.A
< prev
next >
Wrap
Text File
|
1990-08-13
|
2KB
|
37 lines
-- -----------------------------------------------------------------------
-- Title: elementary_functions_exceptions
-- Last Mod: Mon Dec 4 14:03:04 1989
-- Author: Vincent Broman <broman@nosc.mil>
-- copying from the the SIGAda NumWG proposal
-- Copyright 1990 Vincent Broman
-- Permission granted to copy, modify, compile, or distribute this code,
-- provided that (1) this copyright notice is preserved intact, (2) that
-- no other restrictions are placed on further copying by recipients,
-- and (3) recipients of any linkable, compiled version of this code
-- also receive a copy of the source code from which it was compiled.
--
-- Visibility: withed by users of standard math library functions
-- Description:
--
-- The purpose of this package is (presently) to define a single
-- exception that may be raised by any instantiation of
-- GENERIC_ELEMENTARY_FUNCTIONS when a function in it receives an
-- argument that violates its mathematical domain definition. The
-- package resulting from each of those instantiations exports an
-- exception of the same name which is a renaming of this one.
--
-- Note:
--
-- Additional standards to be proposed in the future may add other
-- exceptions to this package.
--
-- -----------------------------------------------------------------------
--
package elementary_functions_exceptions is
argument_error : exception;
end elementary_functions_exceptions;
-- $Header: elem_func_exceptions_s.ada,v 3.9 90/01/24 08:33:11 broman Rel $