QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
palexception.h
Go to the documentation of this file.
1 /*
2  * libpal - Automated Placement of Labels Library
3  *
4  * Copyright (C) 2008 Maxence Laurent, MIS-TIC, HEIG-VD
5  * University of Applied Sciences, Western Switzerland
6  * http://www.hes-so.ch
7  *
8  * Contact:
9  * maxence.laurent <at> heig-vd <dot> ch
10  * or
11  * eric.taillard <at> heig-vd <dot> ch
12  *
13  * This file is part of libpal.
14  *
15  * libpal is free software: you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation, either version 3 of the License, or
18  * (at your option) any later version.
19  *
20  * libpal is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with libpal. If not, see <http://www.gnu.org/licenses/>.
27  *
28  */
29 
30 #ifndef PAL_EXCEPTION_H
31 #define PAL_EXCEPTION_H
32 
33 #include <exception>
34 
35 
36 namespace pal
37 {
38 
43  {
44  public:
45 
49  class NotImplemented : public std::exception
50  {
51  const char * what() const throw() override
52  {
53  return "Not yet implemented... sorry";
54  }
55  };
56 
60  class UnknownFeature : public std::exception
61  {
62  const char * what() const throw() override
63  {
64  return "Feature not found";
65  }
66  };
67 
71  class UnknownLayer : public std::exception
72  {
73  const char * what() const throw() override
74  {
75  return "Layer not found";
76  }
77  };
78 
82  class LayerExists : public std::exception
83  {
84  const char * what() const throw() override
85  {
86  return "Layers names must be unique";
87  }
88  };
89 
93  class FeatureExists : public std::exception
94  {
95  const char * what() const throw() override
96  {
97  return "Features IDs must be unique within a layer";
98  }
99  };
100 
110  class ValueNotInRange : public std::exception
111  {
112  const char * what() const throw() override
113  {
114  return "value not allowed";
115  }
116  };
117  };
118 
119 } // namespace
120 
121 #endif
Various Exceptions.
Definition: palexception.h:42
Try to access an unknown layer.
Definition: palexception.h:71
Thrown when a feature is not yet implemented.
Definition: palexception.h:49
layer already exists
Definition: palexception.h:82
Try to access an unknown feature.
Definition: palexception.h:60
thrown when a value is not in the valid scale range\It can be thrown by :
Definition: palexception.h:110
features already exists
Definition: palexception.h:93