You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
262 B
15 lines
262 B
// division_by_0_exception().
|
|
|
|
// General includes.
|
|
#include "base/cl_sysdep.h"
|
|
|
|
// Specification.
|
|
#include "cln/exception.h"
|
|
|
|
namespace cln {
|
|
|
|
division_by_0_exception::division_by_0_exception ()
|
|
: runtime_exception("Division by zero.")
|
|
{}
|
|
|
|
} // namespace cln
|