summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/condition.lisp7
-rw-r--r--src/package.lisp7
2 files changed, 14 insertions, 0 deletions
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)