Home | History | Annotate | Download | only in include

Lines Matching defs:NCursesException

142 class NCURSES_IMPEXP NCursesException
148 NCursesException (const char* msg, int err)
152 NCursesException (const char* msg)
156 NCursesException& operator=(const NCursesException& rhs)
162 NCursesException(const NCursesException& rhs)
171 virtual ~NCursesException()
176 class NCURSES_IMPEXP NCursesPanelException : public NCursesException
182 NCursesException (msg, err),
189 NCursesException (msg, err),
194 NCursesException ("panel library error", err),
200 NCursesException ("panel library error", err),
207 NCursesException::operator=(rhs);
214 : NCursesException(rhs), p(rhs.p)
227 class NCURSES_IMPEXP NCursesMenuException : public NCursesException
233 NCursesException (msg, err),
240 NCursesException (msg, err),
245 NCursesException ("menu library error", err),
251 NCursesException ("menu library error", err),
258 NCursesException::operator=(rhs);
265 : NCursesException(rhs), m(rhs.m)
278 class NCURSES_IMPEXP NCursesFormException : public NCursesException
284 NCursesException (msg, err),
291 NCursesException (msg, err),
296 NCursesException ("form library error", err),
302 NCursesException ("form library error", err),
309 NCursesException::operator=(rhs);
316 : NCursesException(rhs), f(rhs.f)
340 inline void THROW(const NCursesException *e) {