Home | History | Annotate | Download | only in include

Lines Matching refs:NCursesException

146 class NCURSES_IMPEXP NCursesException
152 NCursesException (const char* msg, int err)
156 NCursesException (const char* msg)
160 NCursesException& operator=(const NCursesException& rhs)
166 NCursesException(const NCursesException& rhs)
175 virtual ~NCursesException()
180 class NCURSES_IMPEXP NCursesPanelException : public NCursesException
186 NCursesException (msg, err),
193 NCursesException (msg, err),
198 NCursesException ("panel library error", err),
204 NCursesException ("panel library error", err),
211 NCursesException::operator=(rhs);
218 : NCursesException(rhs), p(rhs.p)
231 class NCURSES_IMPEXP NCursesMenuException : public NCursesException
237 NCursesException (msg, err),
244 NCursesException (msg, err),
249 NCursesException ("menu library error", err),
255 NCursesException ("menu library error", err),
262 NCursesException::operator=(rhs);
269 : NCursesException(rhs), m(rhs.m)
282 class NCURSES_IMPEXP NCursesFormException : public NCursesException
288 NCursesException (msg, err),
295 NCursesException (msg, err),
300 NCursesException ("form library error", err),
306 NCursesException ("form library error", err),
313 NCursesException::operator=(rhs);
320 : NCursesException(rhs), f(rhs.f)
346 inline void THROW(const NCursesException *e) {