Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nils-Arne Dreier
dune-common
Commits
eb045c10
Commit
eb045c10
authored
19 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
slight doxygen improvement
[[Imported from SVN: r2128]]
parent
21fb9f79
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/exceptions.hh
+11
-7
11 additions, 7 deletions
common/exceptions.hh
with
11 additions
and
7 deletions
common/exceptions.hh
+
11
−
7
View file @
eb045c10
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=4 sw=2 sts=2:
/** \file
\brief A few common exception classes
*/
// $Id$
#ifndef DUNE_EXCEPTIONS_HH
...
...
@@ -133,7 +137,7 @@ namespace Dune {
th__out << THROWSPEC(E) << m; th__ex.message(th__out.str()); throw th__ex; \
} while (0)
/*!
d
efault exception class for I/O errors
/*!
\brief D
efault exception class for I/O errors
This is a superclass for any errors dealing with file/socket I/O problems
like
...
...
@@ -144,7 +148,7 @@ namespace Dune {
*/
class
IOError
:
public
Exception
{};
/*!
d
efault exception class for
M
athematical errors
/*!
\brief D
efault exception class for
m
athematical errors
This is the superclass for all errors which are caused by
mathematical problems like
...
...
@@ -154,10 +158,10 @@ namespace Dune {
*/
class
MathError
:
public
Exception
{};
/*!
d
efault exception class for
R
ange errors
/*!
\brief D
efault exception class for
r
ange errors
This is the superclass for all errors which are caused because
the user tries to access data
,
that was not allocated before.
the user tries to access data that was not allocated before.
These can be problems like
- accessing array entries behind the last entry
...
...
@@ -167,7 +171,7 @@ namespace Dune {
*/
class
RangeError
:
public
Exception
{};
/*!
d
efault exception for dummy implementations
/*!
\brief D
efault exception for dummy implementations
This exception can be used for functions/methods
...
...
@@ -176,7 +180,7 @@ namespace Dune {
*/
class
NotImplemented
:
public
Exception
{};
/*!
d
efault exception class for OS errors
/*!
\brief D
efault exception class for OS errors
This class is thrown when a system-call is used and returns an
error.
...
...
@@ -184,7 +188,7 @@ namespace Dune {
*/
class
SystemError
:
public
Exception
{};
/*!
d
efault exception if memory allocation fails
/*!
\brief D
efault exception if memory allocation fails
*/
class
OutOfMemoryError
:
public
SystemError
{};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment