SQLamarr
The stand-alone ultra-fast simulation option for the LHCb experiment
SQLiteError.h
1 // (c) Copyright 2022 CERN for the benefit of the LHCb Collaboration.
2 //
3 // This software is distributed under the terms of the GNU General Public
4 // Licence version 3 (GPL Version 3), copied verbatim in the file "LICENCE".
5 //
6 // In applying this licence, CERN does not waive the privileges and immunities
7 // granted to it by virtue of its status as an Intergovernmental Organization
8 // or submit itself to any jurisdiction.
9 
10 #include <exception>
11 
12 namespace SQLamarr
13 {
14  class SQLiteError: public std::logic_error {
15  using std::logic_error::logic_error;
16  };
17 }