1 |
|
2 |
/* $Id: FunctionSpaceException.cpp 1312 2007-09-24 06:18:44Z ksteube $ */ |
3 |
|
4 |
/******************************************************* |
5 |
* |
6 |
* Copyright 2003-2007 by ACceSS MNRF |
7 |
* Copyright 2007 by University of Queensland |
8 |
* |
9 |
* http://esscc.uq.edu.au |
10 |
* Primary Business: Queensland, Australia |
11 |
* Licensed under the Open Software License version 3.0 |
12 |
* http://www.opensource.org/licenses/osl-3.0.php |
13 |
* |
14 |
*******************************************************/ |
15 |
|
16 |
#include "FunctionSpaceException.h" |
17 |
|
18 |
|
19 |
using namespace escript; |
20 |
|
21 |
|
22 |
const std::string |
23 |
FunctionSpaceException::exceptionNameValue("FunctionSpaceException"); |
24 |
|
25 |
|
26 |
const std::string & |
27 |
FunctionSpaceException::exceptionName() const |
28 |
{ |
29 |
return exceptionNameValue; |
30 |
} |
31 |
|
32 |
|