File: Error.hh

package info (click to toggle)
eclipse-titan 6.5.0-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 101,128 kB
  • sloc: cpp: 259,139; ansic: 47,560; yacc: 22,554; makefile: 14,074; sh: 12,630; lex: 9,101; xml: 5,362; java: 4,849; perl: 3,784; awk: 48; php: 32; python: 13
file content (49 lines) | stat: -rw-r--r-- 1,668 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/******************************************************************************
 * Copyright (c) 2000-2018 Ericsson Telecom AB
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
 *
 * Contributors:
 *   Balasko, Jeno
 *   Beres, Szabolcs
 *   Delic, Adam
 *   Forstner, Matyas
 *   Szabo, Janos Zoltan – initial implementation
 *
 ******************************************************************************/
#ifndef ERROR_HH
#define ERROR_HH

class TC_End { };

class TC_Error { };

class TTCN_Error : public TC_Error {
  char* error_msg;
public:
  TTCN_Error(char* p_error_msg): error_msg(p_error_msg) {}
  char* get_message() const { return error_msg; }
  ~TTCN_Error();
};

extern void TTCN_error(const char *err_msg, ...)
  __attribute__ ((__format__ (__printf__, 1, 2), __noreturn__));
extern void TTCN_error_begin(const char *err_msg, ...)
  __attribute__ ((__format__ (__printf__, 1, 2)));
extern void TTCN_error_end()
  __attribute__ ((__noreturn__));

void TTCN_warning(const char *warning_msg, ...)
  __attribute__ ((__format__ (__printf__, 1, 2)));
extern void TTCN_warning_begin(const char *warning_msg, ...)
  __attribute__ ((__format__ (__printf__, 1, 2)));
extern void TTCN_warning_end();

extern void TTCN_pattern_error(const char *error_msg, ...)
  __attribute__ ((__format__ (__printf__, 1, 2), __noreturn__));
extern void TTCN_pattern_warning(const char *warning_msg, ...)
  __attribute__ ((__format__ (__printf__, 1, 2)));

#endif