/[escript]/trunk/finley/src/CPPAdapter/FinleyError.cpp
ViewVC logotype

Contents of /trunk/finley/src/CPPAdapter/FinleyError.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2025 - (show annotations)
Tue Nov 11 00:18:33 2008 UTC (14 years, 4 months ago) by jfenwick
File size: 1327 byte(s)
__const on some strings
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

Properties

Name Value
svn:eol-style native
svn:keywords Author Date Id Revision

  ViewVC Help
Powered by ViewVC 1.1.26