Revision 526cc96b977911a7349d6a24923f5cc6a20213b9 authored by Lars Bilke on 03 April 2023, 17:57:44 UTC, committed by Lars Bilke on 03 April 2023, 17:57:44 UTC
[ci] Reducing runtime on wheel and notebook jobs

See merge request ogs/ogs!4552
2 parent s 86cf986 + 7ecfc6a
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