Escript  Revision_4320
SystemMatrixException.h
Go to the documentation of this file.
1 
2 /*****************************************************************************
3 *
4 * Copyright (c) 2003-2013 by University of Queensland
5 * http://www.uq.edu.au
6 *
7 * Primary Business: Queensland, Australia
8 * Licensed under the Open Software License version 3.0
9 * http://www.opensource.org/licenses/osl-3.0.php
10 *
11 * Development until 2012 by Earth Systems Science Computational Center (ESSCC)
12 * Development since 2012 by School of Earth Sciences
13 *
14 *****************************************************************************/
15 
16 
17 #if !defined escript_SystemMatrixException_20040608_H
18 #define escript_SystemMatrixException_20040608_H
19 
20 #include "system_dep.h"
21 #include "esysUtils/EsysException.h"
22 
23 namespace escript
24 {
25 
35  {
36 
37  protected:
38 
40 
41  public:
53  SystemMatrixException(const char *cstr) : Parent(cstr) { updateMessage();}
59  SystemMatrixException(const std::string &str) :
60  Parent(str) { updateMessage();}
67  {
68  updateMessage();
69  }
70 
72  inline SystemMatrixException &
74  {
75  Parent::operator=(other);
76  updateMessage();
77  return *this;
78  }
79 
88  virtual const std::string & exceptionName() const;
89 
90  private:
91 
92  //
93  // the exception name is immutable and class-wide.
94  // Inheritor note; you need one of these too.
95  // and an overloaded exceptionName() in your .cpp implementation file.
96  static const std::string exceptionNameValue;
97  };
98 
99 } // end of namespace
100 #endif