Reference documentation for deal.II version 8.4.2
exceptions.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2004 - 2015 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE at
12 // the top level of the deal.II distribution.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii__lac_exceptions_h
17 #define dealii__lac_exceptions_h
18 
19 #include <deal.II/base/exceptions.h>
20 
21 DEAL_II_NAMESPACE_OPEN
22 
23 namespace LACExceptions
24 {
29 
33  DeclException0 (ExcNotQuadratic);
34 
38  DeclException0 (ExcSingular);
39 
43  DeclException0 (ExcDifferentBlockIndices);
44 
49  DeclException1 (ExcPETScError,
50  int,
51  << "An error with error number " << arg1
52  << " occurred while calling a PETSc function");
53 
58  DeclException1 (ExcTrilinosError,
59  int,
60  << "An error with error number " << arg1
61  << " occurred while calling a Trilinos function");
62 
64 }
65 
66 
67 using namespace LACExceptions;
68 
69 
70 DEAL_II_NAMESPACE_CLOSE
71 
72 #endif
#define DeclException1(Exception1, type1, outsequence)
Definition: exceptions.h:542
#define DeclException0(Exception0)
Definition: exceptions.h:522