Revision d356cbe44521daa5bf05bbb5eba0cf48195f9d46 authored by Dmitry Yu. Naumov on 20 January 2023, 11:57:22 UTC, committed by Dmitry Yu. Naumov on 20 January 2023, 11:57:22 UTC
Slightly relax CTests tolerances

Closes #3355

See merge request ogs/ogs!4448
2 parent s 562a5e9 + ced1d15
Raw File
Exceptions.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <stdexcept>
#include <string>

namespace NumLib
{
struct AssemblyException : public std::runtime_error
{
    explicit AssemblyException(std::string const& reason)
        : std::runtime_error{"Error in process' assembly: " + reason} {};
};
}  // namespace NumLib
back to top