nidas  v1.2-1520
ParseException.h
Go to the documentation of this file.
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 4; tab-width: 4; -*-
2 // vim: set shiftwidth=4 softtabstop=4 expandtab:
3 /*
4  ********************************************************************
5  ** NIDAS: NCAR In-situ Data Acquistion Software
6  **
7  ** 2006, Copyright University Corporation for Atmospheric Research
8  **
9  ** This program is free software; you can redistribute it and/or modify
10  ** it under the terms of the GNU General Public License as published by
11  ** the Free Software Foundation; either version 2 of the License, or
12  ** (at your option) any later version.
13  **
14  ** This program is distributed in the hope that it will be useful,
15  ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16  ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  ** GNU General Public License for more details.
18  **
19  ** The LICENSE.txt file accompanying this software contains
20  ** a copy of the GNU General Public License. If it is not found,
21  ** write to the Free Software Foundation, Inc.,
22  ** 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23  **
24  ********************************************************************
25 */
26 
27 #ifndef NIDAS_UTIL_PARSEEXCEPTION_H
28 #define NIDAS_UTIL_PARSEEXCEPTION_H
29 
30 #include <string>
31 #include <sstream>
32 #include "Exception.h"
33 
34 namespace nidas { namespace util {
35 
36  class ParseException : public Exception {
37 
38  public:
39 
44  ParseException(const std::string& what,
45  const std::string& msg, int lineno):
46  Exception("ParseException", what + ": " +
47  msg + " at line " + linenoToString(lineno)) {}
48 
53  ParseException(const std::string& what,
54  const std::string& msg):
55  Exception("ParseException", what + ": " + msg) {}
56 
60  ParseException(const std::string& message):
61  Exception(message) {}
62 
66  Exception* clone() const {
67  return new ParseException(*this);
68  }
69 
70  private:
71  static std::string linenoToString(int lineno) {
72  std::ostringstream os;
73  os << lineno;
74  return os.str();
75  }
76  };
77 
78 }} // namespace nidas namespace util
79 
80 #endif
ParseException(const std::string &what, const std::string &msg)
Create a ParseException, passing a name of what you&#39;re trying to parse, and a message.
Definition: ParseException.h:53
ParseException(const std::string &message)
Create an ParseException, passing a message.
Definition: ParseException.h:60
Definition: Exception.h:35
Exception * clone() const
clone myself (a &quot;virtual&quot; constructor).
Definition: ParseException.h:66
static std::string linenoToString(int lineno)
Definition: ParseException.h:71
virtual const char * what() const
Definition: Exception.h:98
ParseException(const std::string &what, const std::string &msg, int lineno)
Create a ParseException, passing a name of what you&#39;re trying to parse, a message, and the line number of the document.
Definition: ParseException.h:44
Definition: ParseException.h:36