blob: 391b5c71378c95262eb38e626f044ff798a66090 (
plain)
1
2
3
4
5
6
7
|
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(declaim (optimize (speed 0) (safety 3) (debug 3)))
(in-package #:dns-admin)
(define-condition unauth-error (error)
((text :initarg :text :reader text)))
|