~ chicken-core (chicken-5) /chicken.condition.import.scm
Trap1;;;; chicken.condition.import.scm - import library for "chicken.condition" module2;3; Copyright (c) 2017-2022, The CHICKEN Team4; All rights reserved.5;6; Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following7; conditions are met:8;9; Redistributions of source code must retain the above copyright notice, this list of conditions and the following10; disclaimer.11; Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following12; disclaimer in the documentation and/or other materials provided with the distribution.13; Neither the name of the author nor the names of its contributors may be used to endorse or promote14; products derived from this software without specific prior written permission.15;16; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS17; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY18; AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR19; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR20; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR21; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY22; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR23; OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE24; POSSIBILITY OF SUCH DAMAGE.2526(##sys#register-core-module27 'chicken.condition28 'chicken.condition ; mapped to distinct run/compile-time requirements in eval unit29 '((abort . chicken.condition#abort)30 (signal . chicken.condition#signal)31 (current-exception-handler . chicken.condition#current-exception-handler)32 (print-error-message . chicken.condition#print-error-message)33 (with-exception-handler . chicken.condition#with-exception-handler)34 (make-property-condition . chicken.condition#make-property-condition)35 (make-composite-condition . chicken.condition#make-composite-condition)36 (condition . chicken.condition#condition)37 (condition? . chicken.condition#condition?)38 (condition->list . chicken.condition#condition->list)39 (condition-predicate . chicken.condition#condition-predicate)40 (condition-property-accessor . chicken.condition#condition-property-accessor)41 (get-condition-property . chicken.condition#get-condition-property))42 ##sys#chicken.condition-macro-environment)