From 1ce50200652ba3bc2f0e78f613dcd55104395b75 Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Sun, 30 May 2021 21:43:14 -0600 Subject: initial commit --- src/condition.lisp | 7 +++++++ src/package.lisp | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 src/condition.lisp create mode 100644 src/package.lisp (limited to 'src') diff --git a/src/condition.lisp b/src/condition.lisp new file mode 100644 index 0000000..99933c2 --- /dev/null +++ b/src/condition.lisp @@ -0,0 +1,7 @@ +;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- +(declaim (optimize (speed 0) (safety 3) (debug 3))) + +(in-package :org-ckons-condition) + +(define-condition handled-error (error) + ((text :initarg :text :reader text))) diff --git a/src/package.lisp b/src/package.lisp new file mode 100644 index 0000000..64228c3 --- /dev/null +++ b/src/package.lisp @@ -0,0 +1,7 @@ +;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- +(declaim (optimize (speed 0) (safety 3) (debug 3))) + +(defpackage :org-ckons-condition + (:use :cl)) + +(in-package :org-ckons-condition) -- cgit v1.3