home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / programming / misc_programming / MATH / EFE_.A < prev    next >
Text File  |  1990-08-13  |  2KB  |  37 lines

  1. --  -----------------------------------------------------------------------
  2. --  Title:       elementary_functions_exceptions
  3. --  Last Mod:    Mon Dec  4 14:03:04 1989
  4. --  Author:      Vincent Broman <broman@nosc.mil>
  5. --         copying from the the SIGAda NumWG proposal
  6. --   Copyright 1990 Vincent Broman
  7. --   Permission granted to copy, modify, compile, or distribute this code,
  8. --   provided that (1) this copyright notice is preserved intact, (2) that
  9. --   no other restrictions are placed on further copying by recipients,
  10. --   and (3) recipients of any linkable, compiled version of this code
  11. --   also receive a copy of the source code from which it was compiled.
  12. --   
  13. --  Visibility:  withed by users of standard math library functions
  14. --  Description: 
  15. --
  16. --       The purpose of this package is (presently) to define a single
  17. --       exception that may be raised by any instantiation of
  18. --       GENERIC_ELEMENTARY_FUNCTIONS when a function in it receives an
  19. --       argument that violates its mathematical domain definition.  The
  20. --       package resulting from each of those instantiations exports an
  21. --       exception of the same name which is a renaming of this one.
  22. --
  23. --  Note:
  24. --
  25. --       Additional standards to be proposed in the future may add other
  26. --       exceptions to this package.
  27. --
  28. --  -----------------------------------------------------------------------
  29. --
  30. package elementary_functions_exceptions is
  31.  
  32.     argument_error : exception;
  33.  
  34. end elementary_functions_exceptions;
  35.  
  36. -- $Header: elem_func_exceptions_s.ada,v 3.9 90/01/24 08:33:11 broman Rel $
  37.