aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/unset_exception.h')
-rw-r--r--src/core/unset_exception.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/core/unset_exception.h b/src/core/unset_exception.h
deleted file mode 100644
index 4346ba6..0000000
--- a/src/core/unset_exception.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- Please use git log for copyright holder and year information
-
- This file is part of libbash.
-
- libbash 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 2 of the License, or
- (at your option) any later version.
-
- libbash 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 libbash. If not, see <http://www.gnu.org/licenses/>.
-*/
-///
-/// \file unset_exception.h
-/// \brief implementation for unset_exception
-///
-
-#ifndef LIBBASH_CORE_UNSET_EXCEPTION_H_
-#define LIBBASH_CORE_UNSET_EXCEPTION_H_
-
-#include <stdexcept>
-#include <string>
-
-#include "interpreter_exception.h"
-
-///
-/// \class unset_exception
-/// \brief exception for unsetting variables
-///
-class unset_exception: public libbash::interpreter_exception
-{
-public:
- explicit unset_exception(const std::string& err_msg):
- libbash::interpreter_exception(err_msg){}
-};
-
-#endif