errord.inc 532 B

123456789101112131415
  1. Type
  2. TPTC_ERROR_HANDLER = Procedure(error : TPTC_ERROR);
  3. Function ptc_error_create(message : String) : TPTC_ERROR;
  4. Function ptc_error_create_composite(message : String; error : TPTC_ERROR) : TPTC_ERROR;
  5. Procedure ptc_error_destroy(obj : TPTC_ERROR);
  6. Procedure ptc_error_report(obj : TPTC_ERROR);
  7. Function ptc_error_message(obj : TPTC_ERROR) : String;
  8. Procedure ptc_error_assign(obj, error : TPTC_ERROR);
  9. Function ptc_error_equals(obj, error : TPTC_ERROR) : Boolean;
  10. Procedure ptc_error_handler(handler : TPTC_ERROR_HANDLER);