1 |
|
2 |
/******************************************************* |
3 |
* |
4 |
* Copyright (c) 2003-2008 by University of Queensland |
5 |
* Earth Systems Science Computational Center (ESSCC) |
6 |
* http://www.uq.edu.au/esscc |
7 |
* |
8 |
* Primary Business: Queensland, Australia |
9 |
* Licensed under the Open Software License version 3.0 |
10 |
* http://www.opensource.org/licenses/osl-3.0.php |
11 |
* |
12 |
*******************************************************/ |
13 |
|
14 |
|
15 |
#ifdef PASO_MPI |
16 |
#include <mpi.h> |
17 |
#endif |
18 |
#include "FinleyError.h" |
19 |
#include <iostream> |
20 |
|
21 |
namespace finley { |
22 |
|
23 |
void setFinleyError(Finley_ErrorCodeType errorCode, |
24 |
const std::string& errMess) |
25 |
{ |
26 |
Finley_setError(errorCode,(__const char*)(errMess.c_str())); |
27 |
} |
28 |
|
29 |
void checkFinleyError() |
30 |
{ |
31 |
if (Finley_noError()) { |
32 |
return; |
33 |
} else { |
34 |
// |
35 |
// reset the error code to no error otherwise the next call to |
36 |
// this function may resurrect a previous error |
37 |
Finley_resetError(); |
38 |
throw FinleyAdapterException(Finley_getErrorMessage()); |
39 |
} |
40 |
} |
41 |
void checkPasoError() |
42 |
{ |
43 |
if (Paso_noError()) { |
44 |
return; |
45 |
} else { |
46 |
// |
47 |
// reset the error code to no error otherwise the next call to |
48 |
// this function may resurrect a previous error |
49 |
Paso_resetError(); |
50 |
throw FinleyAdapterException(Paso_getErrorMessage()); |
51 |
} |
52 |
} |
53 |
|
54 |
} // end of namespace |