Go to the first, previous, next, last section, table of contents.
Version: 0.1#3 (1998/12/14, 19:14:44 MET)
This file implements error predicates of different types.
Implemented by Göran Smedbäck.
- Library usage:
:- use_module(library(error)).
- Exports:
- Predicates:
error_vrml/1
,
output_error/1
.
- Other modules used:
- System library modules:
aggregates
,
dynamic
,
iso_misc
,
iso_byte_char
,
iso_incomplete
,
operators
,
read
,
write
.
- PREDICATE: error_vrml/1:
-
Usage: error_vrml(Structure)
- Description: Given a structure with the error type as its head with possible arguments, it will write the associated error-text.
- Call and exit should be compatible with:
undefined:+Structure
(undefined property)
Structure
is any term.
(basic_props:term/1
)
- PREDICATE: output_error/1:
-
Usage: output_error(Message)
- Description: This predicate will print the error message given as the argument. This predicate is used for warnings that only needs to be given as information and not necessarily give an error by the VRML browser.
- Call and exit should be compatible with:
undefined:+Message
(undefined property)
Message
is a list of atm
s.
(basic_props:list/2
)
Go to the first, previous, next, last section, table of contents.