Belle II Software  release-05-01-25
FitParameterDimensionException.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * right(C) 2019 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributor: Jo-Frederik Krohn *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #include <stdexcept>
11 #pragma once
12 namespace TreeFitter {
14  class FitParameterDimensionException : public std::runtime_error {
15  public:
17  explicit FitParameterDimensionException(std::string const& msg):
18  runtime_error(msg)
19  {}
20  };
21 }
TreeFitter::FitParameterDimensionException::FitParameterDimensionException
FitParameterDimensionException(std::string const &msg)
throw a helpful message like this one.
Definition: FitParameterDimensionException.h:33