;;; rudel-obby-errors.el --- Error data used in the obby Rudel backend -*- lexical-binding:t -*- ;; ;; Copyright (C) 2009, 2010, 2014, 2016 Free Software Foundation, Inc. ;; ;; Author: Jan Moringen ;; Keywords: Rudel, obby, errors ;; X-RCS: $Id:$ ;; ;; This file is part of Rudel. ;; ;; Rudel is free software: you can redistribute it and/or modify it ;; under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; ;; Rudel is distributed in the hope that it will be useful, but ;; WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License ;; along with Rudel. If not, see . ;;; Commentary: ;; ;; This file contains definitions of error conditions and numeric ;; error codes used in the Rudel obby backend. ;;; History: ;; ;; 0.1 - Initial revision. ;;; Code: ;; (require 'rudel-errors) ;;; Emacs lisp errors ;; ;; rudel-obby-invalid-username (put 'rudel-obby-invalid-username 'error-conditions '(error rudel-error rudel-join-error rudel-obby-login-error rudel-obby-invalid-username)) (put 'rudel-obby-invalid-username 'error-message "Invalid username") ;; rudel-obby-username-in-use (put 'rudel-obby-username-in-use 'error-conditions '(error rudel-error rudel-join-error rudel-obby-login-error rudel-obby-username-in-use)) (put 'rudel-obby-username-in-use 'error-message "Username is in use") ;; rudel-obby-invalid-color (put 'rudel-obby-invalid-color 'error-conditions '(error rudel-error rudel-join-error rudel-obby-login-error rudel-obby-invalid-color)) (put 'rudel-obby-color-in-use 'error-message "Invalid color") ;; rudel-obby-color-in-use (put 'rudel-obby-color-in-use 'error-conditions '(error rudel-error rudel-join-error rudel-obby-login-error rudel-obby-color-in-use)) (put 'rudel-obby-color-in-use 'error-message "Color is in use") ;;; Obby protocol error codes ;; (defconst rudel-obby-error-username-invalid #x0001 "Error code for invalid username.") (defconst rudel-obby-error-username-in-use #x0002 "Error code for username already in use.") (defconst rudel-obby-error-color-invalid #x0200 "Error code for invalid color.") (defconst rudel-obby-error-color-in-use #x0100 "Error code for color already in use.") (defconst rudel-obby-error-wrong-global-password #x0101 "Error code for wrong global password.") (defconst rudel-obby-error-wrong-user-password #x0102 "Error code for wrong user password.") (defconst rudel-obby-error-protocol-version-mismatch #x0103 "Error code for protocol version mismatch.") (defconst rudel-obby-error-not-encrypted #x0104 "Error code for not encrypted.") (provide 'rudel-obby-errors) ;;; rudel-obby-errors.el ends here