Anti-Grain Geometry Tutorial
exception.h
1 /*
2  * Copyright (c) 2018 Heng Yuan
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #ifndef TUTORIAL_EXCEPTION_H
17 #define TUTORIAL_EXCEPTION_H
18 
19 #include <cstdarg>
20 #include <cstdio>
21 
23 {
24 public:
25  TutorialException (const char* msg, ...)
26  {
27  va_list args;
28  va_start(args, msg);
29  vsnprintf(m_msg, sizeof(m_msg), msg, args);
30  va_end(args);
31  }
32 
33  const char* getMessage () const { return m_msg; }
34 private:
35  char m_msg[257];
36 };
37 
38 #define ASSERT(a) do { if (!(a)) throw TutorialException ("Assertion error at %s:%d", __FILE__, __LINE__); } while (0)
39 
40 #endif /* TUTORIAL_EXCEPTION_H_ */