Last change
on this file since 1397 was
1397,
checked in by Peter Johansson, 12 years ago
|
latest yat
|
-
Property svn:eol-style set to
native
|
File size:
1.3 KB
|
Line | |
---|
1 | // $Id: Exception.cc 2526 2011-07-25 02:03:35Z peter $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2010, 2011 Peter Johansson |
---|
5 | |
---|
6 | This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
7 | |
---|
8 | The yat library is free software; you can redistribute it and/or |
---|
9 | modify it under the terms of the GNU General Public License as |
---|
10 | published by the Free Software Foundation; either version 3 of the |
---|
11 | License, or (at your option) any later version. |
---|
12 | |
---|
13 | The yat library is distributed in the hope that it will be useful, |
---|
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
20 | */ |
---|
21 | |
---|
22 | #include "Exception.h" |
---|
23 | |
---|
24 | #include <cerrno> |
---|
25 | #include <cstring> |
---|
26 | #include <stdexcept> |
---|
27 | #include <string> |
---|
28 | |
---|
29 | namespace theplu { |
---|
30 | namespace yat { |
---|
31 | namespace utility { |
---|
32 | |
---|
33 | runtime_error::runtime_error(std::string message) |
---|
34 | : std::runtime_error(message) |
---|
35 | {} |
---|
36 | |
---|
37 | |
---|
38 | cmd_error::cmd_error(std::string message) |
---|
39 | : runtime_error(message) |
---|
40 | {} |
---|
41 | |
---|
42 | |
---|
43 | errno_error::errno_error(std::string message) |
---|
44 | : runtime_error(message + strerror(errno)) |
---|
45 | {} |
---|
46 | |
---|
47 | |
---|
48 | IO_error::IO_error(std::string message) |
---|
49 | : runtime_error("IO_error: " + message) |
---|
50 | {} |
---|
51 | |
---|
52 | }}} // of namespace utility, yat, and theplu |
---|
Note: See
TracBrowser
for help on using the repository browser.