/src/opencv/3rdparty/openexr/Iex/IexBaseExc.h
Line | Count | Source (jump to first uncovered line) |
1 | | /////////////////////////////////////////////////////////////////////////// |
2 | | // |
3 | | // Copyright (c) 2002-2012, Industrial Light & Magic, a division of Lucas |
4 | | // Digital Ltd. LLC |
5 | | // |
6 | | // All rights reserved. |
7 | | // |
8 | | // Redistribution and use in source and binary forms, with or without |
9 | | // modification, are permitted provided that the following conditions are |
10 | | // met: |
11 | | // * Redistributions of source code must retain the above copyright |
12 | | // notice, this list of conditions and the following disclaimer. |
13 | | // * Redistributions in binary form must reproduce the above |
14 | | // copyright notice, this list of conditions and the following disclaimer |
15 | | // in the documentation and/or other materials provided with the |
16 | | // distribution. |
17 | | // * Neither the name of Industrial Light & Magic nor the names of |
18 | | // its contributors may be used to endorse or promote products derived |
19 | | // from this software without specific prior written permission. |
20 | | // |
21 | | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
22 | | // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
23 | | // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
24 | | // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
25 | | // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
26 | | // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
27 | | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
28 | | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
29 | | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
30 | | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
31 | | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
32 | | // |
33 | | /////////////////////////////////////////////////////////////////////////// |
34 | | |
35 | | |
36 | | #ifndef INCLUDED_IEXBASEEXC_H |
37 | | #define INCLUDED_IEXBASEEXC_H |
38 | | |
39 | | #include "IexNamespace.h" |
40 | | #include "IexExport.h" |
41 | | |
42 | | //---------------------------------------------------------- |
43 | | // |
44 | | // A general exception base class, and a few |
45 | | // useful exceptions derived from the base class. |
46 | | // |
47 | | //---------------------------------------------------------- |
48 | | |
49 | | #include <string> |
50 | | #include <exception> |
51 | | #include <sstream> |
52 | | |
53 | | IEX_INTERNAL_NAMESPACE_HEADER_ENTER |
54 | | |
55 | | |
56 | | //------------------------------- |
57 | | // Our most basic exception class |
58 | | //------------------------------- |
59 | | |
60 | | class BaseExc: public std::exception |
61 | | { |
62 | | public: |
63 | | |
64 | | //---------------------------- |
65 | | // Constructors and destructor |
66 | | //---------------------------- |
67 | | |
68 | | IEX_EXPORT BaseExc (const char *s = 0) throw(); // std::string (s) |
69 | | IEX_EXPORT BaseExc (const std::string &s) throw(); // std::string (s) |
70 | | IEX_EXPORT BaseExc (std::stringstream &s) throw(); // std::string (s.str()) |
71 | | |
72 | | IEX_EXPORT BaseExc (const BaseExc &be) throw(); |
73 | | IEX_EXPORT virtual ~BaseExc () throw (); |
74 | | |
75 | | //--------------------------------------------------- |
76 | | // what() method -- e.what() returns _message.c_str() |
77 | | //--------------------------------------------------- |
78 | | |
79 | | IEX_EXPORT virtual const char * what () const throw (); |
80 | | |
81 | | |
82 | | //-------------------------------------------------- |
83 | | // Convenient methods to change the exception's text |
84 | | //-------------------------------------------------- |
85 | | |
86 | | IEX_EXPORT BaseExc & assign (std::stringstream &s); // assign (s.str()) |
87 | | IEX_EXPORT BaseExc & operator = (std::stringstream &s); |
88 | | |
89 | | IEX_EXPORT BaseExc & append (std::stringstream &s); // append (s.str()) |
90 | | IEX_EXPORT BaseExc & operator += (std::stringstream &s); |
91 | | |
92 | | |
93 | | //-------------------------------------------------- |
94 | | // These methods from the base class get obscured by |
95 | | // the definitions above. |
96 | | //-------------------------------------------------- |
97 | | |
98 | | IEX_EXPORT BaseExc & assign (const char *s); |
99 | | IEX_EXPORT BaseExc & operator = (const char *s); |
100 | | |
101 | | IEX_EXPORT BaseExc & append (const char *s); |
102 | | IEX_EXPORT BaseExc & operator += (const char *s); |
103 | | |
104 | | //--------------------------------------------------- |
105 | | // Access to the string representation of the message |
106 | | //--------------------------------------------------- |
107 | | |
108 | | IEX_EXPORT const std::string & message () const; |
109 | | |
110 | | //-------------------------------------------------- |
111 | | // Stack trace for the point at which the exception |
112 | | // was thrown. The stack trace will be an empty |
113 | | // string unless a working stack-tracing routine |
114 | | // has been installed (see below, setStackTracer()). |
115 | | //-------------------------------------------------- |
116 | | |
117 | | IEX_EXPORT const std::string & stackTrace () const; |
118 | | |
119 | | private: |
120 | | |
121 | | std::string _message; |
122 | | std::string _stackTrace; |
123 | | }; |
124 | | |
125 | | |
126 | | //----------------------------------------------------- |
127 | | // A macro to save typing when declararing an exception |
128 | | // class derived directly or indirectly from BaseExc: |
129 | | //----------------------------------------------------- |
130 | | |
131 | | #define DEFINE_EXC_EXP(exp, name, base) \ |
132 | | class name: public base \ |
133 | | { \ |
134 | | public: \ |
135 | 0 | exp name() throw(): base (0) {} \ Unexecuted instantiation: Iex_opencv::ArgExc::ArgExc() Unexecuted instantiation: Iex_opencv::LogicExc::LogicExc() Unexecuted instantiation: Iex_opencv::InputExc::InputExc() Unexecuted instantiation: Iex_opencv::IoExc::IoExc() Unexecuted instantiation: Iex_opencv::MathExc::MathExc() Unexecuted instantiation: Iex_opencv::ErrnoExc::ErrnoExc() Unexecuted instantiation: Iex_opencv::NoImplExc::NoImplExc() Unexecuted instantiation: Iex_opencv::NullExc::NullExc() Unexecuted instantiation: Iex_opencv::TypeExc::TypeExc() Unexecuted instantiation: Iex_opencv::OverflowExc::OverflowExc() Unexecuted instantiation: Iex_opencv::UnderflowExc::UnderflowExc() Unexecuted instantiation: Iex_opencv::DivzeroExc::DivzeroExc() Unexecuted instantiation: Iex_opencv::InexactExc::InexactExc() Unexecuted instantiation: Iex_opencv::InvalidFpOpExc::InvalidFpOpExc() Unexecuted instantiation: Imath_opencv::NullVecExc::NullVecExc() Unexecuted instantiation: Imath_opencv::InfPointExc::InfPointExc() Unexecuted instantiation: Imath_opencv::NullQuatExc::NullQuatExc() Unexecuted instantiation: Imath_opencv::SingMatrixExc::SingMatrixExc() Unexecuted instantiation: Imath_opencv::ZeroScaleExc::ZeroScaleExc() Unexecuted instantiation: Imath_opencv::IntVecNormalizeExc::IntVecNormalizeExc() Unexecuted instantiation: Iex_opencv::EpermExc::EpermExc() Unexecuted instantiation: Iex_opencv::EnoentExc::EnoentExc() Unexecuted instantiation: Iex_opencv::EsrchExc::EsrchExc() Unexecuted instantiation: Iex_opencv::EintrExc::EintrExc() Unexecuted instantiation: Iex_opencv::EioExc::EioExc() Unexecuted instantiation: Iex_opencv::EnxioExc::EnxioExc() Unexecuted instantiation: Iex_opencv::E2bigExc::E2bigExc() Unexecuted instantiation: Iex_opencv::EnoexecExc::EnoexecExc() Unexecuted instantiation: Iex_opencv::EbadfExc::EbadfExc() Unexecuted instantiation: Iex_opencv::EchildExc::EchildExc() Unexecuted instantiation: Iex_opencv::EagainExc::EagainExc() Unexecuted instantiation: Iex_opencv::EnomemExc::EnomemExc() Unexecuted instantiation: Iex_opencv::EaccesExc::EaccesExc() Unexecuted instantiation: Iex_opencv::EfaultExc::EfaultExc() Unexecuted instantiation: Iex_opencv::EnotblkExc::EnotblkExc() Unexecuted instantiation: Iex_opencv::EbusyExc::EbusyExc() Unexecuted instantiation: Iex_opencv::EexistExc::EexistExc() Unexecuted instantiation: Iex_opencv::ExdevExc::ExdevExc() Unexecuted instantiation: Iex_opencv::EnodevExc::EnodevExc() Unexecuted instantiation: Iex_opencv::EnotdirExc::EnotdirExc() Unexecuted instantiation: Iex_opencv::EisdirExc::EisdirExc() Unexecuted instantiation: Iex_opencv::EinvalExc::EinvalExc() Unexecuted instantiation: Iex_opencv::EnfileExc::EnfileExc() Unexecuted instantiation: Iex_opencv::EmfileExc::EmfileExc() Unexecuted instantiation: Iex_opencv::EnottyExc::EnottyExc() Unexecuted instantiation: Iex_opencv::EtxtbsyExc::EtxtbsyExc() Unexecuted instantiation: Iex_opencv::EfbigExc::EfbigExc() Unexecuted instantiation: Iex_opencv::EnospcExc::EnospcExc() Unexecuted instantiation: Iex_opencv::EspipeExc::EspipeExc() Unexecuted instantiation: Iex_opencv::ErofsExc::ErofsExc() Unexecuted instantiation: Iex_opencv::EmlinkExc::EmlinkExc() Unexecuted instantiation: Iex_opencv::EpipeExc::EpipeExc() Unexecuted instantiation: Iex_opencv::EdomExc::EdomExc() Unexecuted instantiation: Iex_opencv::ErangeExc::ErangeExc() Unexecuted instantiation: Iex_opencv::EnomsgExc::EnomsgExc() Unexecuted instantiation: Iex_opencv::EidrmExc::EidrmExc() Unexecuted instantiation: Iex_opencv::EchrngExc::EchrngExc() Unexecuted instantiation: Iex_opencv::El2nsyncExc::El2nsyncExc() Unexecuted instantiation: Iex_opencv::El3hltExc::El3hltExc() Unexecuted instantiation: Iex_opencv::El3rstExc::El3rstExc() Unexecuted instantiation: Iex_opencv::ElnrngExc::ElnrngExc() Unexecuted instantiation: Iex_opencv::EunatchExc::EunatchExc() Unexecuted instantiation: Iex_opencv::EnocsiExc::EnocsiExc() Unexecuted instantiation: Iex_opencv::El2hltExc::El2hltExc() Unexecuted instantiation: Iex_opencv::EdeadlkExc::EdeadlkExc() Unexecuted instantiation: Iex_opencv::EnolckExc::EnolckExc() Unexecuted instantiation: Iex_opencv::EbadeExc::EbadeExc() Unexecuted instantiation: Iex_opencv::EbadrExc::EbadrExc() Unexecuted instantiation: Iex_opencv::ExfullExc::ExfullExc() Unexecuted instantiation: Iex_opencv::EnoanoExc::EnoanoExc() Unexecuted instantiation: Iex_opencv::EbadrqcExc::EbadrqcExc() Unexecuted instantiation: Iex_opencv::EbadsltExc::EbadsltExc() Unexecuted instantiation: Iex_opencv::EdeadlockExc::EdeadlockExc() Unexecuted instantiation: Iex_opencv::EbfontExc::EbfontExc() Unexecuted instantiation: Iex_opencv::EnostrExc::EnostrExc() Unexecuted instantiation: Iex_opencv::EnodataExc::EnodataExc() Unexecuted instantiation: Iex_opencv::EtimeExc::EtimeExc() Unexecuted instantiation: Iex_opencv::EnosrExc::EnosrExc() Unexecuted instantiation: Iex_opencv::EnonetExc::EnonetExc() Unexecuted instantiation: Iex_opencv::EnopkgExc::EnopkgExc() Unexecuted instantiation: Iex_opencv::EremoteExc::EremoteExc() Unexecuted instantiation: Iex_opencv::EnolinkExc::EnolinkExc() Unexecuted instantiation: Iex_opencv::EadvExc::EadvExc() Unexecuted instantiation: Iex_opencv::EsrmntExc::EsrmntExc() Unexecuted instantiation: Iex_opencv::EcommExc::EcommExc() Unexecuted instantiation: Iex_opencv::EprotoExc::EprotoExc() Unexecuted instantiation: Iex_opencv::EmultihopExc::EmultihopExc() Unexecuted instantiation: Iex_opencv::EbadmsgExc::EbadmsgExc() Unexecuted instantiation: Iex_opencv::EnametoolongExc::EnametoolongExc() Unexecuted instantiation: Iex_opencv::EoverflowExc::EoverflowExc() Unexecuted instantiation: Iex_opencv::EnotuniqExc::EnotuniqExc() Unexecuted instantiation: Iex_opencv::EbadfdExc::EbadfdExc() Unexecuted instantiation: Iex_opencv::EremchgExc::EremchgExc() Unexecuted instantiation: Iex_opencv::ElibaccExc::ElibaccExc() Unexecuted instantiation: Iex_opencv::ElibbadExc::ElibbadExc() Unexecuted instantiation: Iex_opencv::ElibscnExc::ElibscnExc() Unexecuted instantiation: Iex_opencv::ElibmaxExc::ElibmaxExc() Unexecuted instantiation: Iex_opencv::ElibexecExc::ElibexecExc() Unexecuted instantiation: Iex_opencv::EilseqExc::EilseqExc() Unexecuted instantiation: Iex_opencv::EnosysExc::EnosysExc() Unexecuted instantiation: Iex_opencv::EloopExc::EloopExc() Unexecuted instantiation: Iex_opencv::ErestartExc::ErestartExc() Unexecuted instantiation: Iex_opencv::EstrpipeExc::EstrpipeExc() Unexecuted instantiation: Iex_opencv::EnotemptyExc::EnotemptyExc() Unexecuted instantiation: Iex_opencv::EusersExc::EusersExc() Unexecuted instantiation: Iex_opencv::EnotsockExc::EnotsockExc() Unexecuted instantiation: Iex_opencv::EdestaddrreqExc::EdestaddrreqExc() Unexecuted instantiation: Iex_opencv::EmsgsizeExc::EmsgsizeExc() Unexecuted instantiation: Iex_opencv::EprototypeExc::EprototypeExc() Unexecuted instantiation: Iex_opencv::EnoprotooptExc::EnoprotooptExc() Unexecuted instantiation: Iex_opencv::EprotonosupportExc::EprotonosupportExc() Unexecuted instantiation: Iex_opencv::EsocktnosupportExc::EsocktnosupportExc() Unexecuted instantiation: Iex_opencv::EopnotsuppExc::EopnotsuppExc() Unexecuted instantiation: Iex_opencv::EpfnosupportExc::EpfnosupportExc() Unexecuted instantiation: Iex_opencv::EafnosupportExc::EafnosupportExc() Unexecuted instantiation: Iex_opencv::EaddrinuseExc::EaddrinuseExc() Unexecuted instantiation: Iex_opencv::EaddrnotavailExc::EaddrnotavailExc() Unexecuted instantiation: Iex_opencv::EnetdownExc::EnetdownExc() Unexecuted instantiation: Iex_opencv::EnetunreachExc::EnetunreachExc() Unexecuted instantiation: Iex_opencv::EnetresetExc::EnetresetExc() Unexecuted instantiation: Iex_opencv::EconnabortedExc::EconnabortedExc() Unexecuted instantiation: Iex_opencv::EconnresetExc::EconnresetExc() Unexecuted instantiation: Iex_opencv::EnobufsExc::EnobufsExc() Unexecuted instantiation: Iex_opencv::EisconnExc::EisconnExc() Unexecuted instantiation: Iex_opencv::EnotconnExc::EnotconnExc() Unexecuted instantiation: Iex_opencv::EshutdownExc::EshutdownExc() Unexecuted instantiation: Iex_opencv::EtoomanyrefsExc::EtoomanyrefsExc() Unexecuted instantiation: Iex_opencv::EtimedoutExc::EtimedoutExc() Unexecuted instantiation: Iex_opencv::EconnrefusedExc::EconnrefusedExc() Unexecuted instantiation: Iex_opencv::EhostdownExc::EhostdownExc() Unexecuted instantiation: Iex_opencv::EhostunreachExc::EhostunreachExc() Unexecuted instantiation: Iex_opencv::EalreadyExc::EalreadyExc() Unexecuted instantiation: Iex_opencv::EinprogressExc::EinprogressExc() Unexecuted instantiation: Iex_opencv::EstaleExc::EstaleExc() Unexecuted instantiation: Iex_opencv::EioresidExc::EioresidExc() Unexecuted instantiation: Iex_opencv::EucleanExc::EucleanExc() Unexecuted instantiation: Iex_opencv::EnotnamExc::EnotnamExc() Unexecuted instantiation: Iex_opencv::EnavailExc::EnavailExc() Unexecuted instantiation: Iex_opencv::EisnamExc::EisnamExc() Unexecuted instantiation: Iex_opencv::EremoteioExc::EremoteioExc() Unexecuted instantiation: Iex_opencv::EinitExc::EinitExc() Unexecuted instantiation: Iex_opencv::EremdevExc::EremdevExc() Unexecuted instantiation: Iex_opencv::EcanceledExc::EcanceledExc() Unexecuted instantiation: Iex_opencv::EnolimfileExc::EnolimfileExc() Unexecuted instantiation: Iex_opencv::EproclimExc::EproclimExc() Unexecuted instantiation: Iex_opencv::EdisjointExc::EdisjointExc() Unexecuted instantiation: Iex_opencv::EnologinExc::EnologinExc() Unexecuted instantiation: Iex_opencv::EloginlimExc::EloginlimExc() Unexecuted instantiation: Iex_opencv::EgrouploopExc::EgrouploopExc() Unexecuted instantiation: Iex_opencv::EnoattachExc::EnoattachExc() Unexecuted instantiation: Iex_opencv::EnotsupExc::EnotsupExc() Unexecuted instantiation: Iex_opencv::EnoattrExc::EnoattrExc() Unexecuted instantiation: Iex_opencv::EdircorruptedExc::EdircorruptedExc() Unexecuted instantiation: Iex_opencv::EdquotExc::EdquotExc() Unexecuted instantiation: Iex_opencv::EnfsremoteExc::EnfsremoteExc() Unexecuted instantiation: Iex_opencv::EcontrollerExc::EcontrollerExc() Unexecuted instantiation: Iex_opencv::EnotcontrollerExc::EnotcontrollerExc() Unexecuted instantiation: Iex_opencv::EenqueuedExc::EenqueuedExc() Unexecuted instantiation: Iex_opencv::EnotenqueuedExc::EnotenqueuedExc() Unexecuted instantiation: Iex_opencv::EjoinedExc::EjoinedExc() Unexecuted instantiation: Iex_opencv::EnotjoinedExc::EnotjoinedExc() Unexecuted instantiation: Iex_opencv::EnoprocExc::EnoprocExc() Unexecuted instantiation: Iex_opencv::EmustrunExc::EmustrunExc() Unexecuted instantiation: Iex_opencv::EnotstoppedExc::EnotstoppedExc() Unexecuted instantiation: Iex_opencv::EclockcpuExc::EclockcpuExc() Unexecuted instantiation: Iex_opencv::EinvalstateExc::EinvalstateExc() Unexecuted instantiation: Iex_opencv::EnoexistExc::EnoexistExc() Unexecuted instantiation: Iex_opencv::EendofminorExc::EendofminorExc() Unexecuted instantiation: Iex_opencv::EbufsizeExc::EbufsizeExc() Unexecuted instantiation: Iex_opencv::EemptyExc::EemptyExc() Unexecuted instantiation: Iex_opencv::EnointrgroupExc::EnointrgroupExc() Unexecuted instantiation: Iex_opencv::EinvalmodeExc::EinvalmodeExc() Unexecuted instantiation: Iex_opencv::EcantextentExc::EcantextentExc() Unexecuted instantiation: Iex_opencv::EinvaltimeExc::EinvaltimeExc() Unexecuted instantiation: Iex_opencv::EdestroyedExc::EdestroyedExc() |
136 | 0 | exp name (const char* text) throw(): base (text) {} \ Unexecuted instantiation: Iex_opencv::ArgExc::ArgExc(char const*) Unexecuted instantiation: Iex_opencv::LogicExc::LogicExc(char const*) Unexecuted instantiation: Iex_opencv::InputExc::InputExc(char const*) Unexecuted instantiation: Iex_opencv::IoExc::IoExc(char const*) Unexecuted instantiation: Iex_opencv::MathExc::MathExc(char const*) Unexecuted instantiation: Iex_opencv::ErrnoExc::ErrnoExc(char const*) Unexecuted instantiation: Iex_opencv::NoImplExc::NoImplExc(char const*) Unexecuted instantiation: Iex_opencv::NullExc::NullExc(char const*) Unexecuted instantiation: Iex_opencv::TypeExc::TypeExc(char const*) Unexecuted instantiation: Iex_opencv::OverflowExc::OverflowExc(char const*) Unexecuted instantiation: Iex_opencv::UnderflowExc::UnderflowExc(char const*) Unexecuted instantiation: Iex_opencv::DivzeroExc::DivzeroExc(char const*) Unexecuted instantiation: Iex_opencv::InexactExc::InexactExc(char const*) Unexecuted instantiation: Iex_opencv::InvalidFpOpExc::InvalidFpOpExc(char const*) Unexecuted instantiation: Imath_opencv::SingMatrixExc::SingMatrixExc(char const*) Unexecuted instantiation: Imath_opencv::NullVecExc::NullVecExc(char const*) Unexecuted instantiation: Imath_opencv::InfPointExc::InfPointExc(char const*) Unexecuted instantiation: Imath_opencv::NullQuatExc::NullQuatExc(char const*) Unexecuted instantiation: Imath_opencv::ZeroScaleExc::ZeroScaleExc(char const*) Unexecuted instantiation: Imath_opencv::IntVecNormalizeExc::IntVecNormalizeExc(char const*) Unexecuted instantiation: Iex_opencv::EpermExc::EpermExc(char const*) Unexecuted instantiation: Iex_opencv::EnoentExc::EnoentExc(char const*) Unexecuted instantiation: Iex_opencv::EsrchExc::EsrchExc(char const*) Unexecuted instantiation: Iex_opencv::EintrExc::EintrExc(char const*) Unexecuted instantiation: Iex_opencv::EioExc::EioExc(char const*) Unexecuted instantiation: Iex_opencv::EnxioExc::EnxioExc(char const*) Unexecuted instantiation: Iex_opencv::E2bigExc::E2bigExc(char const*) Unexecuted instantiation: Iex_opencv::EnoexecExc::EnoexecExc(char const*) Unexecuted instantiation: Iex_opencv::EbadfExc::EbadfExc(char const*) Unexecuted instantiation: Iex_opencv::EchildExc::EchildExc(char const*) Unexecuted instantiation: Iex_opencv::EagainExc::EagainExc(char const*) Unexecuted instantiation: Iex_opencv::EnomemExc::EnomemExc(char const*) Unexecuted instantiation: Iex_opencv::EaccesExc::EaccesExc(char const*) Unexecuted instantiation: Iex_opencv::EfaultExc::EfaultExc(char const*) Unexecuted instantiation: Iex_opencv::EnotblkExc::EnotblkExc(char const*) Unexecuted instantiation: Iex_opencv::EbusyExc::EbusyExc(char const*) Unexecuted instantiation: Iex_opencv::EexistExc::EexistExc(char const*) Unexecuted instantiation: Iex_opencv::ExdevExc::ExdevExc(char const*) Unexecuted instantiation: Iex_opencv::EnodevExc::EnodevExc(char const*) Unexecuted instantiation: Iex_opencv::EnotdirExc::EnotdirExc(char const*) Unexecuted instantiation: Iex_opencv::EisdirExc::EisdirExc(char const*) Unexecuted instantiation: Iex_opencv::EinvalExc::EinvalExc(char const*) Unexecuted instantiation: Iex_opencv::EnfileExc::EnfileExc(char const*) Unexecuted instantiation: Iex_opencv::EmfileExc::EmfileExc(char const*) Unexecuted instantiation: Iex_opencv::EnottyExc::EnottyExc(char const*) Unexecuted instantiation: Iex_opencv::EtxtbsyExc::EtxtbsyExc(char const*) Unexecuted instantiation: Iex_opencv::EfbigExc::EfbigExc(char const*) Unexecuted instantiation: Iex_opencv::EnospcExc::EnospcExc(char const*) Unexecuted instantiation: Iex_opencv::EspipeExc::EspipeExc(char const*) Unexecuted instantiation: Iex_opencv::ErofsExc::ErofsExc(char const*) Unexecuted instantiation: Iex_opencv::EmlinkExc::EmlinkExc(char const*) Unexecuted instantiation: Iex_opencv::EpipeExc::EpipeExc(char const*) Unexecuted instantiation: Iex_opencv::EdomExc::EdomExc(char const*) Unexecuted instantiation: Iex_opencv::ErangeExc::ErangeExc(char const*) Unexecuted instantiation: Iex_opencv::EnomsgExc::EnomsgExc(char const*) Unexecuted instantiation: Iex_opencv::EidrmExc::EidrmExc(char const*) Unexecuted instantiation: Iex_opencv::EchrngExc::EchrngExc(char const*) Unexecuted instantiation: Iex_opencv::El2nsyncExc::El2nsyncExc(char const*) Unexecuted instantiation: Iex_opencv::El3hltExc::El3hltExc(char const*) Unexecuted instantiation: Iex_opencv::El3rstExc::El3rstExc(char const*) Unexecuted instantiation: Iex_opencv::ElnrngExc::ElnrngExc(char const*) Unexecuted instantiation: Iex_opencv::EunatchExc::EunatchExc(char const*) Unexecuted instantiation: Iex_opencv::EnocsiExc::EnocsiExc(char const*) Unexecuted instantiation: Iex_opencv::El2hltExc::El2hltExc(char const*) Unexecuted instantiation: Iex_opencv::EdeadlkExc::EdeadlkExc(char const*) Unexecuted instantiation: Iex_opencv::EnolckExc::EnolckExc(char const*) Unexecuted instantiation: Iex_opencv::EbadeExc::EbadeExc(char const*) Unexecuted instantiation: Iex_opencv::EbadrExc::EbadrExc(char const*) Unexecuted instantiation: Iex_opencv::ExfullExc::ExfullExc(char const*) Unexecuted instantiation: Iex_opencv::EnoanoExc::EnoanoExc(char const*) Unexecuted instantiation: Iex_opencv::EbadrqcExc::EbadrqcExc(char const*) Unexecuted instantiation: Iex_opencv::EbadsltExc::EbadsltExc(char const*) Unexecuted instantiation: Iex_opencv::EdeadlockExc::EdeadlockExc(char const*) Unexecuted instantiation: Iex_opencv::EbfontExc::EbfontExc(char const*) Unexecuted instantiation: Iex_opencv::EnostrExc::EnostrExc(char const*) Unexecuted instantiation: Iex_opencv::EnodataExc::EnodataExc(char const*) Unexecuted instantiation: Iex_opencv::EtimeExc::EtimeExc(char const*) Unexecuted instantiation: Iex_opencv::EnosrExc::EnosrExc(char const*) Unexecuted instantiation: Iex_opencv::EnonetExc::EnonetExc(char const*) Unexecuted instantiation: Iex_opencv::EnopkgExc::EnopkgExc(char const*) Unexecuted instantiation: Iex_opencv::EremoteExc::EremoteExc(char const*) Unexecuted instantiation: Iex_opencv::EnolinkExc::EnolinkExc(char const*) Unexecuted instantiation: Iex_opencv::EadvExc::EadvExc(char const*) Unexecuted instantiation: Iex_opencv::EsrmntExc::EsrmntExc(char const*) Unexecuted instantiation: Iex_opencv::EcommExc::EcommExc(char const*) Unexecuted instantiation: Iex_opencv::EprotoExc::EprotoExc(char const*) Unexecuted instantiation: Iex_opencv::EmultihopExc::EmultihopExc(char const*) Unexecuted instantiation: Iex_opencv::EbadmsgExc::EbadmsgExc(char const*) Unexecuted instantiation: Iex_opencv::EnametoolongExc::EnametoolongExc(char const*) Unexecuted instantiation: Iex_opencv::EoverflowExc::EoverflowExc(char const*) Unexecuted instantiation: Iex_opencv::EnotuniqExc::EnotuniqExc(char const*) Unexecuted instantiation: Iex_opencv::EbadfdExc::EbadfdExc(char const*) Unexecuted instantiation: Iex_opencv::EremchgExc::EremchgExc(char const*) Unexecuted instantiation: Iex_opencv::ElibaccExc::ElibaccExc(char const*) Unexecuted instantiation: Iex_opencv::ElibbadExc::ElibbadExc(char const*) Unexecuted instantiation: Iex_opencv::ElibscnExc::ElibscnExc(char const*) Unexecuted instantiation: Iex_opencv::ElibmaxExc::ElibmaxExc(char const*) Unexecuted instantiation: Iex_opencv::ElibexecExc::ElibexecExc(char const*) Unexecuted instantiation: Iex_opencv::EilseqExc::EilseqExc(char const*) Unexecuted instantiation: Iex_opencv::EnosysExc::EnosysExc(char const*) Unexecuted instantiation: Iex_opencv::EloopExc::EloopExc(char const*) Unexecuted instantiation: Iex_opencv::ErestartExc::ErestartExc(char const*) Unexecuted instantiation: Iex_opencv::EstrpipeExc::EstrpipeExc(char const*) Unexecuted instantiation: Iex_opencv::EnotemptyExc::EnotemptyExc(char const*) Unexecuted instantiation: Iex_opencv::EusersExc::EusersExc(char const*) Unexecuted instantiation: Iex_opencv::EnotsockExc::EnotsockExc(char const*) Unexecuted instantiation: Iex_opencv::EdestaddrreqExc::EdestaddrreqExc(char const*) Unexecuted instantiation: Iex_opencv::EmsgsizeExc::EmsgsizeExc(char const*) Unexecuted instantiation: Iex_opencv::EprototypeExc::EprototypeExc(char const*) Unexecuted instantiation: Iex_opencv::EnoprotooptExc::EnoprotooptExc(char const*) Unexecuted instantiation: Iex_opencv::EprotonosupportExc::EprotonosupportExc(char const*) Unexecuted instantiation: Iex_opencv::EsocktnosupportExc::EsocktnosupportExc(char const*) Unexecuted instantiation: Iex_opencv::EopnotsuppExc::EopnotsuppExc(char const*) Unexecuted instantiation: Iex_opencv::EpfnosupportExc::EpfnosupportExc(char const*) Unexecuted instantiation: Iex_opencv::EafnosupportExc::EafnosupportExc(char const*) Unexecuted instantiation: Iex_opencv::EaddrinuseExc::EaddrinuseExc(char const*) Unexecuted instantiation: Iex_opencv::EaddrnotavailExc::EaddrnotavailExc(char const*) Unexecuted instantiation: Iex_opencv::EnetdownExc::EnetdownExc(char const*) Unexecuted instantiation: Iex_opencv::EnetunreachExc::EnetunreachExc(char const*) Unexecuted instantiation: Iex_opencv::EnetresetExc::EnetresetExc(char const*) Unexecuted instantiation: Iex_opencv::EconnabortedExc::EconnabortedExc(char const*) Unexecuted instantiation: Iex_opencv::EconnresetExc::EconnresetExc(char const*) Unexecuted instantiation: Iex_opencv::EnobufsExc::EnobufsExc(char const*) Unexecuted instantiation: Iex_opencv::EisconnExc::EisconnExc(char const*) Unexecuted instantiation: Iex_opencv::EnotconnExc::EnotconnExc(char const*) Unexecuted instantiation: Iex_opencv::EshutdownExc::EshutdownExc(char const*) Unexecuted instantiation: Iex_opencv::EtoomanyrefsExc::EtoomanyrefsExc(char const*) Unexecuted instantiation: Iex_opencv::EtimedoutExc::EtimedoutExc(char const*) Unexecuted instantiation: Iex_opencv::EconnrefusedExc::EconnrefusedExc(char const*) Unexecuted instantiation: Iex_opencv::EhostdownExc::EhostdownExc(char const*) Unexecuted instantiation: Iex_opencv::EhostunreachExc::EhostunreachExc(char const*) Unexecuted instantiation: Iex_opencv::EalreadyExc::EalreadyExc(char const*) Unexecuted instantiation: Iex_opencv::EinprogressExc::EinprogressExc(char const*) Unexecuted instantiation: Iex_opencv::EstaleExc::EstaleExc(char const*) Unexecuted instantiation: Iex_opencv::EioresidExc::EioresidExc(char const*) Unexecuted instantiation: Iex_opencv::EucleanExc::EucleanExc(char const*) Unexecuted instantiation: Iex_opencv::EnotnamExc::EnotnamExc(char const*) Unexecuted instantiation: Iex_opencv::EnavailExc::EnavailExc(char const*) Unexecuted instantiation: Iex_opencv::EisnamExc::EisnamExc(char const*) Unexecuted instantiation: Iex_opencv::EremoteioExc::EremoteioExc(char const*) Unexecuted instantiation: Iex_opencv::EinitExc::EinitExc(char const*) Unexecuted instantiation: Iex_opencv::EremdevExc::EremdevExc(char const*) Unexecuted instantiation: Iex_opencv::EcanceledExc::EcanceledExc(char const*) Unexecuted instantiation: Iex_opencv::EnolimfileExc::EnolimfileExc(char const*) Unexecuted instantiation: Iex_opencv::EproclimExc::EproclimExc(char const*) Unexecuted instantiation: Iex_opencv::EdisjointExc::EdisjointExc(char const*) Unexecuted instantiation: Iex_opencv::EnologinExc::EnologinExc(char const*) Unexecuted instantiation: Iex_opencv::EloginlimExc::EloginlimExc(char const*) Unexecuted instantiation: Iex_opencv::EgrouploopExc::EgrouploopExc(char const*) Unexecuted instantiation: Iex_opencv::EnoattachExc::EnoattachExc(char const*) Unexecuted instantiation: Iex_opencv::EnotsupExc::EnotsupExc(char const*) Unexecuted instantiation: Iex_opencv::EnoattrExc::EnoattrExc(char const*) Unexecuted instantiation: Iex_opencv::EdircorruptedExc::EdircorruptedExc(char const*) Unexecuted instantiation: Iex_opencv::EdquotExc::EdquotExc(char const*) Unexecuted instantiation: Iex_opencv::EnfsremoteExc::EnfsremoteExc(char const*) Unexecuted instantiation: Iex_opencv::EcontrollerExc::EcontrollerExc(char const*) Unexecuted instantiation: Iex_opencv::EnotcontrollerExc::EnotcontrollerExc(char const*) Unexecuted instantiation: Iex_opencv::EenqueuedExc::EenqueuedExc(char const*) Unexecuted instantiation: Iex_opencv::EnotenqueuedExc::EnotenqueuedExc(char const*) Unexecuted instantiation: Iex_opencv::EjoinedExc::EjoinedExc(char const*) Unexecuted instantiation: Iex_opencv::EnotjoinedExc::EnotjoinedExc(char const*) Unexecuted instantiation: Iex_opencv::EnoprocExc::EnoprocExc(char const*) Unexecuted instantiation: Iex_opencv::EmustrunExc::EmustrunExc(char const*) Unexecuted instantiation: Iex_opencv::EnotstoppedExc::EnotstoppedExc(char const*) Unexecuted instantiation: Iex_opencv::EclockcpuExc::EclockcpuExc(char const*) Unexecuted instantiation: Iex_opencv::EinvalstateExc::EinvalstateExc(char const*) Unexecuted instantiation: Iex_opencv::EnoexistExc::EnoexistExc(char const*) Unexecuted instantiation: Iex_opencv::EendofminorExc::EendofminorExc(char const*) Unexecuted instantiation: Iex_opencv::EbufsizeExc::EbufsizeExc(char const*) Unexecuted instantiation: Iex_opencv::EemptyExc::EemptyExc(char const*) Unexecuted instantiation: Iex_opencv::EnointrgroupExc::EnointrgroupExc(char const*) Unexecuted instantiation: Iex_opencv::EinvalmodeExc::EinvalmodeExc(char const*) Unexecuted instantiation: Iex_opencv::EcantextentExc::EcantextentExc(char const*) Unexecuted instantiation: Iex_opencv::EinvaltimeExc::EinvaltimeExc(char const*) Unexecuted instantiation: Iex_opencv::EdestroyedExc::EdestroyedExc(char const*) |
137 | 0 | exp name (const std::string &text) throw(): base (text) {} \ Unexecuted instantiation: Iex_opencv::ArgExc::ArgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::LogicExc::LogicExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::InputExc::InputExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::IoExc::IoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::MathExc::MathExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ErrnoExc::ErrnoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::NoImplExc::NoImplExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::NullExc::NullExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::TypeExc::TypeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::OverflowExc::OverflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::UnderflowExc::UnderflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::DivzeroExc::DivzeroExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::InexactExc::InexactExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::InvalidFpOpExc::InvalidFpOpExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_opencv::NullVecExc::NullVecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_opencv::InfPointExc::InfPointExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_opencv::NullQuatExc::NullQuatExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_opencv::SingMatrixExc::SingMatrixExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_opencv::ZeroScaleExc::ZeroScaleExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Imath_opencv::IntVecNormalizeExc::IntVecNormalizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EpermExc::EpermExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnoentExc::EnoentExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EsrchExc::EsrchExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EintrExc::EintrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EioExc::EioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnxioExc::EnxioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::E2bigExc::E2bigExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnoexecExc::EnoexecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EbadfExc::EbadfExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EchildExc::EchildExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EagainExc::EagainExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnomemExc::EnomemExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EaccesExc::EaccesExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EfaultExc::EfaultExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotblkExc::EnotblkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EbusyExc::EbusyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EexistExc::EexistExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ExdevExc::ExdevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnodevExc::EnodevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotdirExc::EnotdirExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EisdirExc::EisdirExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EinvalExc::EinvalExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnfileExc::EnfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EmfileExc::EmfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnottyExc::EnottyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EtxtbsyExc::EtxtbsyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EfbigExc::EfbigExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnospcExc::EnospcExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EspipeExc::EspipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ErofsExc::ErofsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EmlinkExc::EmlinkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EpipeExc::EpipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EdomExc::EdomExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ErangeExc::ErangeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnomsgExc::EnomsgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EidrmExc::EidrmExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EchrngExc::EchrngExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::El2nsyncExc::El2nsyncExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::El3hltExc::El3hltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::El3rstExc::El3rstExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ElnrngExc::ElnrngExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EunatchExc::EunatchExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::El2hltExc::El2hltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EdeadlkExc::EdeadlkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnolckExc::EnolckExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EbadeExc::EbadeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EbadrExc::EbadrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ExfullExc::ExfullExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnoanoExc::EnoanoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EbadrqcExc::EbadrqcExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EbadsltExc::EbadsltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EbfontExc::EbfontExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnostrExc::EnostrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnodataExc::EnodataExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EtimeExc::EtimeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnosrExc::EnosrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnonetExc::EnonetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnopkgExc::EnopkgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EremoteExc::EremoteExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnolinkExc::EnolinkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EadvExc::EadvExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EsrmntExc::EsrmntExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EcommExc::EcommExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EprotoExc::EprotoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EmultihopExc::EmultihopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EbadmsgExc::EbadmsgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnametoolongExc::EnametoolongExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EoverflowExc::EoverflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotuniqExc::EnotuniqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EbadfdExc::EbadfdExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EremchgExc::EremchgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ElibaccExc::ElibaccExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ElibbadExc::ElibbadExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ElibscnExc::ElibscnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ElibmaxExc::ElibmaxExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ElibexecExc::ElibexecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EilseqExc::EilseqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnosysExc::EnosysExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EloopExc::EloopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::ErestartExc::ErestartExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EstrpipeExc::EstrpipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotemptyExc::EnotemptyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EusersExc::EusersExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotsockExc::EnotsockExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EdestaddrreqExc::EdestaddrreqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EmsgsizeExc::EmsgsizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EprototypeExc::EprototypeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnoprotooptExc::EnoprotooptExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EprotonosupportExc::EprotonosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EsocktnosupportExc::EsocktnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EopnotsuppExc::EopnotsuppExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EpfnosupportExc::EpfnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EafnosupportExc::EafnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EaddrinuseExc::EaddrinuseExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EaddrnotavailExc::EaddrnotavailExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnetdownExc::EnetdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnetunreachExc::EnetunreachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnetresetExc::EnetresetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EconnabortedExc::EconnabortedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EconnresetExc::EconnresetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnobufsExc::EnobufsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EisconnExc::EisconnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotconnExc::EnotconnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EshutdownExc::EshutdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EtoomanyrefsExc::EtoomanyrefsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EtimedoutExc::EtimedoutExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EconnrefusedExc::EconnrefusedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EhostdownExc::EhostdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EhostunreachExc::EhostunreachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EalreadyExc::EalreadyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EinprogressExc::EinprogressExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EstaleExc::EstaleExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EucleanExc::EucleanExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotnamExc::EnotnamExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnavailExc::EnavailExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EisnamExc::EisnamExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EremoteioExc::EremoteioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EcanceledExc::EcanceledExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EdquotExc::EdquotExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnocsiExc::EnocsiExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EdeadlockExc::EdeadlockExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EioresidExc::EioresidExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EinitExc::EinitExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EremdevExc::EremdevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnolimfileExc::EnolimfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EproclimExc::EproclimExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EdisjointExc::EdisjointExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnologinExc::EnologinExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EloginlimExc::EloginlimExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EgrouploopExc::EgrouploopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnoattachExc::EnoattachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotsupExc::EnotsupExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnoattrExc::EnoattrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EdircorruptedExc::EdircorruptedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnfsremoteExc::EnfsremoteExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EcontrollerExc::EcontrollerExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotcontrollerExc::EnotcontrollerExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EenqueuedExc::EenqueuedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotenqueuedExc::EnotenqueuedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EjoinedExc::EjoinedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotjoinedExc::EnotjoinedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnoprocExc::EnoprocExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EmustrunExc::EmustrunExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnotstoppedExc::EnotstoppedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EclockcpuExc::EclockcpuExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EinvalstateExc::EinvalstateExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnoexistExc::EnoexistExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EendofminorExc::EendofminorExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EbufsizeExc::EbufsizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EemptyExc::EemptyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EnointrgroupExc::EnointrgroupExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EinvalmodeExc::EinvalmodeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EcantextentExc::EcantextentExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EinvaltimeExc::EinvaltimeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) Unexecuted instantiation: Iex_opencv::EdestroyedExc::EdestroyedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) |
138 | 0 | exp name (std::stringstream &text) throw(): base (text) {} \ Unexecuted instantiation: Iex_opencv::ArgExc::ArgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::LogicExc::LogicExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::InputExc::InputExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::IoExc::IoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::MathExc::MathExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ErrnoExc::ErrnoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::NoImplExc::NoImplExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::NullExc::NullExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::TypeExc::TypeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::OverflowExc::OverflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::UnderflowExc::UnderflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::DivzeroExc::DivzeroExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::InexactExc::InexactExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::InvalidFpOpExc::InvalidFpOpExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_opencv::NullVecExc::NullVecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_opencv::InfPointExc::InfPointExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_opencv::NullQuatExc::NullQuatExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_opencv::SingMatrixExc::SingMatrixExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_opencv::ZeroScaleExc::ZeroScaleExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Imath_opencv::IntVecNormalizeExc::IntVecNormalizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EpermExc::EpermExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnoentExc::EnoentExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EsrchExc::EsrchExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EintrExc::EintrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EioExc::EioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnxioExc::EnxioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::E2bigExc::E2bigExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnoexecExc::EnoexecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EbadfExc::EbadfExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EchildExc::EchildExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EagainExc::EagainExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnomemExc::EnomemExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EaccesExc::EaccesExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EfaultExc::EfaultExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotblkExc::EnotblkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EbusyExc::EbusyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EexistExc::EexistExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ExdevExc::ExdevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnodevExc::EnodevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotdirExc::EnotdirExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EisdirExc::EisdirExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EinvalExc::EinvalExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnfileExc::EnfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EmfileExc::EmfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnottyExc::EnottyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EtxtbsyExc::EtxtbsyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EfbigExc::EfbigExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnospcExc::EnospcExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EspipeExc::EspipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ErofsExc::ErofsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EmlinkExc::EmlinkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EpipeExc::EpipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EdomExc::EdomExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ErangeExc::ErangeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnomsgExc::EnomsgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EidrmExc::EidrmExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EchrngExc::EchrngExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::El2nsyncExc::El2nsyncExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::El3hltExc::El3hltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::El3rstExc::El3rstExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ElnrngExc::ElnrngExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EunatchExc::EunatchExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnocsiExc::EnocsiExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::El2hltExc::El2hltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EdeadlkExc::EdeadlkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnolckExc::EnolckExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EbadeExc::EbadeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EbadrExc::EbadrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ExfullExc::ExfullExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnoanoExc::EnoanoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EbadrqcExc::EbadrqcExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EbadsltExc::EbadsltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EdeadlockExc::EdeadlockExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EbfontExc::EbfontExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnostrExc::EnostrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnodataExc::EnodataExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EtimeExc::EtimeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnosrExc::EnosrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnonetExc::EnonetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnopkgExc::EnopkgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EremoteExc::EremoteExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnolinkExc::EnolinkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EadvExc::EadvExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EsrmntExc::EsrmntExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EcommExc::EcommExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EprotoExc::EprotoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EmultihopExc::EmultihopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EbadmsgExc::EbadmsgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnametoolongExc::EnametoolongExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EoverflowExc::EoverflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotuniqExc::EnotuniqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EbadfdExc::EbadfdExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EremchgExc::EremchgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ElibaccExc::ElibaccExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ElibbadExc::ElibbadExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ElibscnExc::ElibscnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ElibmaxExc::ElibmaxExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ElibexecExc::ElibexecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EilseqExc::EilseqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnosysExc::EnosysExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EloopExc::EloopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::ErestartExc::ErestartExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EstrpipeExc::EstrpipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotemptyExc::EnotemptyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EusersExc::EusersExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotsockExc::EnotsockExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EdestaddrreqExc::EdestaddrreqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EmsgsizeExc::EmsgsizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EprototypeExc::EprototypeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnoprotooptExc::EnoprotooptExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EprotonosupportExc::EprotonosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EsocktnosupportExc::EsocktnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EopnotsuppExc::EopnotsuppExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EpfnosupportExc::EpfnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EafnosupportExc::EafnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EaddrinuseExc::EaddrinuseExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EaddrnotavailExc::EaddrnotavailExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnetdownExc::EnetdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnetunreachExc::EnetunreachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnetresetExc::EnetresetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EconnabortedExc::EconnabortedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EconnresetExc::EconnresetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnobufsExc::EnobufsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EisconnExc::EisconnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotconnExc::EnotconnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EshutdownExc::EshutdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EtoomanyrefsExc::EtoomanyrefsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EtimedoutExc::EtimedoutExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EconnrefusedExc::EconnrefusedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EhostdownExc::EhostdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EhostunreachExc::EhostunreachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EalreadyExc::EalreadyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EinprogressExc::EinprogressExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EstaleExc::EstaleExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EioresidExc::EioresidExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EucleanExc::EucleanExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotnamExc::EnotnamExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnavailExc::EnavailExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EisnamExc::EisnamExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EremoteioExc::EremoteioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EinitExc::EinitExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EremdevExc::EremdevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EcanceledExc::EcanceledExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnolimfileExc::EnolimfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EproclimExc::EproclimExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EdisjointExc::EdisjointExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnologinExc::EnologinExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EloginlimExc::EloginlimExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EgrouploopExc::EgrouploopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnoattachExc::EnoattachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotsupExc::EnotsupExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnoattrExc::EnoattrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EdircorruptedExc::EdircorruptedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EdquotExc::EdquotExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnfsremoteExc::EnfsremoteExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EcontrollerExc::EcontrollerExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotcontrollerExc::EnotcontrollerExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EenqueuedExc::EenqueuedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotenqueuedExc::EnotenqueuedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EjoinedExc::EjoinedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotjoinedExc::EnotjoinedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnoprocExc::EnoprocExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EmustrunExc::EmustrunExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnotstoppedExc::EnotstoppedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EclockcpuExc::EclockcpuExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EinvalstateExc::EinvalstateExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnoexistExc::EnoexistExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EendofminorExc::EendofminorExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EbufsizeExc::EbufsizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EemptyExc::EemptyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EnointrgroupExc::EnointrgroupExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EinvalmodeExc::EinvalmodeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EcantextentExc::EcantextentExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EinvaltimeExc::EinvaltimeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) Unexecuted instantiation: Iex_opencv::EdestroyedExc::EdestroyedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) |
139 | 0 | exp ~name() throw() { } \ Unexecuted instantiation: Iex_opencv::ArgExc::~ArgExc() Unexecuted instantiation: Iex_opencv::LogicExc::~LogicExc() Unexecuted instantiation: Iex_opencv::InputExc::~InputExc() Unexecuted instantiation: Iex_opencv::IoExc::~IoExc() Unexecuted instantiation: Iex_opencv::MathExc::~MathExc() Unexecuted instantiation: Iex_opencv::ErrnoExc::~ErrnoExc() Unexecuted instantiation: Iex_opencv::NoImplExc::~NoImplExc() Unexecuted instantiation: Iex_opencv::NullExc::~NullExc() Unexecuted instantiation: Iex_opencv::TypeExc::~TypeExc() Unexecuted instantiation: Iex_opencv::OverflowExc::~OverflowExc() Unexecuted instantiation: Iex_opencv::UnderflowExc::~UnderflowExc() Unexecuted instantiation: Iex_opencv::DivzeroExc::~DivzeroExc() Unexecuted instantiation: Iex_opencv::InexactExc::~InexactExc() Unexecuted instantiation: Iex_opencv::InvalidFpOpExc::~InvalidFpOpExc() Unexecuted instantiation: Imath_opencv::NullVecExc::~NullVecExc() Unexecuted instantiation: Imath_opencv::InfPointExc::~InfPointExc() Unexecuted instantiation: Imath_opencv::NullQuatExc::~NullQuatExc() Unexecuted instantiation: Imath_opencv::SingMatrixExc::~SingMatrixExc() Unexecuted instantiation: Imath_opencv::ZeroScaleExc::~ZeroScaleExc() Unexecuted instantiation: Imath_opencv::IntVecNormalizeExc::~IntVecNormalizeExc() Unexecuted instantiation: Iex_opencv::EpermExc::~EpermExc() Unexecuted instantiation: Iex_opencv::EnoentExc::~EnoentExc() Unexecuted instantiation: Iex_opencv::EsrchExc::~EsrchExc() Unexecuted instantiation: Iex_opencv::EintrExc::~EintrExc() Unexecuted instantiation: Iex_opencv::EioExc::~EioExc() Unexecuted instantiation: Iex_opencv::EnxioExc::~EnxioExc() Unexecuted instantiation: Iex_opencv::E2bigExc::~E2bigExc() Unexecuted instantiation: Iex_opencv::EnoexecExc::~EnoexecExc() Unexecuted instantiation: Iex_opencv::EbadfExc::~EbadfExc() Unexecuted instantiation: Iex_opencv::EchildExc::~EchildExc() Unexecuted instantiation: Iex_opencv::EagainExc::~EagainExc() Unexecuted instantiation: Iex_opencv::EnomemExc::~EnomemExc() Unexecuted instantiation: Iex_opencv::EaccesExc::~EaccesExc() Unexecuted instantiation: Iex_opencv::EfaultExc::~EfaultExc() Unexecuted instantiation: Iex_opencv::EnotblkExc::~EnotblkExc() Unexecuted instantiation: Iex_opencv::EbusyExc::~EbusyExc() Unexecuted instantiation: Iex_opencv::EexistExc::~EexistExc() Unexecuted instantiation: Iex_opencv::ExdevExc::~ExdevExc() Unexecuted instantiation: Iex_opencv::EnodevExc::~EnodevExc() Unexecuted instantiation: Iex_opencv::EnotdirExc::~EnotdirExc() Unexecuted instantiation: Iex_opencv::EisdirExc::~EisdirExc() Unexecuted instantiation: Iex_opencv::EinvalExc::~EinvalExc() Unexecuted instantiation: Iex_opencv::EnfileExc::~EnfileExc() Unexecuted instantiation: Iex_opencv::EmfileExc::~EmfileExc() Unexecuted instantiation: Iex_opencv::EnottyExc::~EnottyExc() Unexecuted instantiation: Iex_opencv::EtxtbsyExc::~EtxtbsyExc() Unexecuted instantiation: Iex_opencv::EfbigExc::~EfbigExc() Unexecuted instantiation: Iex_opencv::EnospcExc::~EnospcExc() Unexecuted instantiation: Iex_opencv::EspipeExc::~EspipeExc() Unexecuted instantiation: Iex_opencv::ErofsExc::~ErofsExc() Unexecuted instantiation: Iex_opencv::EmlinkExc::~EmlinkExc() Unexecuted instantiation: Iex_opencv::EpipeExc::~EpipeExc() Unexecuted instantiation: Iex_opencv::EdomExc::~EdomExc() Unexecuted instantiation: Iex_opencv::ErangeExc::~ErangeExc() Unexecuted instantiation: Iex_opencv::EnomsgExc::~EnomsgExc() Unexecuted instantiation: Iex_opencv::EidrmExc::~EidrmExc() Unexecuted instantiation: Iex_opencv::EchrngExc::~EchrngExc() Unexecuted instantiation: Iex_opencv::El2nsyncExc::~El2nsyncExc() Unexecuted instantiation: Iex_opencv::El3hltExc::~El3hltExc() Unexecuted instantiation: Iex_opencv::El3rstExc::~El3rstExc() Unexecuted instantiation: Iex_opencv::ElnrngExc::~ElnrngExc() Unexecuted instantiation: Iex_opencv::EunatchExc::~EunatchExc() Unexecuted instantiation: Iex_opencv::EnocsiExc::~EnocsiExc() Unexecuted instantiation: Iex_opencv::El2hltExc::~El2hltExc() Unexecuted instantiation: Iex_opencv::EdeadlkExc::~EdeadlkExc() Unexecuted instantiation: Iex_opencv::EnolckExc::~EnolckExc() Unexecuted instantiation: Iex_opencv::EbadeExc::~EbadeExc() Unexecuted instantiation: Iex_opencv::EbadrExc::~EbadrExc() Unexecuted instantiation: Iex_opencv::ExfullExc::~ExfullExc() Unexecuted instantiation: Iex_opencv::EnoanoExc::~EnoanoExc() Unexecuted instantiation: Iex_opencv::EbadrqcExc::~EbadrqcExc() Unexecuted instantiation: Iex_opencv::EbadsltExc::~EbadsltExc() Unexecuted instantiation: Iex_opencv::EdeadlockExc::~EdeadlockExc() Unexecuted instantiation: Iex_opencv::EbfontExc::~EbfontExc() Unexecuted instantiation: Iex_opencv::EnostrExc::~EnostrExc() Unexecuted instantiation: Iex_opencv::EnodataExc::~EnodataExc() Unexecuted instantiation: Iex_opencv::EtimeExc::~EtimeExc() Unexecuted instantiation: Iex_opencv::EnosrExc::~EnosrExc() Unexecuted instantiation: Iex_opencv::EnonetExc::~EnonetExc() Unexecuted instantiation: Iex_opencv::EnopkgExc::~EnopkgExc() Unexecuted instantiation: Iex_opencv::EremoteExc::~EremoteExc() Unexecuted instantiation: Iex_opencv::EnolinkExc::~EnolinkExc() Unexecuted instantiation: Iex_opencv::EadvExc::~EadvExc() Unexecuted instantiation: Iex_opencv::EsrmntExc::~EsrmntExc() Unexecuted instantiation: Iex_opencv::EcommExc::~EcommExc() Unexecuted instantiation: Iex_opencv::EprotoExc::~EprotoExc() Unexecuted instantiation: Iex_opencv::EmultihopExc::~EmultihopExc() Unexecuted instantiation: Iex_opencv::EbadmsgExc::~EbadmsgExc() Unexecuted instantiation: Iex_opencv::EnametoolongExc::~EnametoolongExc() Unexecuted instantiation: Iex_opencv::EoverflowExc::~EoverflowExc() Unexecuted instantiation: Iex_opencv::EnotuniqExc::~EnotuniqExc() Unexecuted instantiation: Iex_opencv::EbadfdExc::~EbadfdExc() Unexecuted instantiation: Iex_opencv::EremchgExc::~EremchgExc() Unexecuted instantiation: Iex_opencv::ElibaccExc::~ElibaccExc() Unexecuted instantiation: Iex_opencv::ElibbadExc::~ElibbadExc() Unexecuted instantiation: Iex_opencv::ElibscnExc::~ElibscnExc() Unexecuted instantiation: Iex_opencv::ElibmaxExc::~ElibmaxExc() Unexecuted instantiation: Iex_opencv::ElibexecExc::~ElibexecExc() Unexecuted instantiation: Iex_opencv::EilseqExc::~EilseqExc() Unexecuted instantiation: Iex_opencv::EnosysExc::~EnosysExc() Unexecuted instantiation: Iex_opencv::EloopExc::~EloopExc() Unexecuted instantiation: Iex_opencv::ErestartExc::~ErestartExc() Unexecuted instantiation: Iex_opencv::EstrpipeExc::~EstrpipeExc() Unexecuted instantiation: Iex_opencv::EnotemptyExc::~EnotemptyExc() Unexecuted instantiation: Iex_opencv::EusersExc::~EusersExc() Unexecuted instantiation: Iex_opencv::EnotsockExc::~EnotsockExc() Unexecuted instantiation: Iex_opencv::EdestaddrreqExc::~EdestaddrreqExc() Unexecuted instantiation: Iex_opencv::EmsgsizeExc::~EmsgsizeExc() Unexecuted instantiation: Iex_opencv::EprototypeExc::~EprototypeExc() Unexecuted instantiation: Iex_opencv::EnoprotooptExc::~EnoprotooptExc() Unexecuted instantiation: Iex_opencv::EprotonosupportExc::~EprotonosupportExc() Unexecuted instantiation: Iex_opencv::EsocktnosupportExc::~EsocktnosupportExc() Unexecuted instantiation: Iex_opencv::EopnotsuppExc::~EopnotsuppExc() Unexecuted instantiation: Iex_opencv::EpfnosupportExc::~EpfnosupportExc() Unexecuted instantiation: Iex_opencv::EafnosupportExc::~EafnosupportExc() Unexecuted instantiation: Iex_opencv::EaddrinuseExc::~EaddrinuseExc() Unexecuted instantiation: Iex_opencv::EaddrnotavailExc::~EaddrnotavailExc() Unexecuted instantiation: Iex_opencv::EnetdownExc::~EnetdownExc() Unexecuted instantiation: Iex_opencv::EnetunreachExc::~EnetunreachExc() Unexecuted instantiation: Iex_opencv::EnetresetExc::~EnetresetExc() Unexecuted instantiation: Iex_opencv::EconnabortedExc::~EconnabortedExc() Unexecuted instantiation: Iex_opencv::EconnresetExc::~EconnresetExc() Unexecuted instantiation: Iex_opencv::EnobufsExc::~EnobufsExc() Unexecuted instantiation: Iex_opencv::EisconnExc::~EisconnExc() Unexecuted instantiation: Iex_opencv::EnotconnExc::~EnotconnExc() Unexecuted instantiation: Iex_opencv::EshutdownExc::~EshutdownExc() Unexecuted instantiation: Iex_opencv::EtoomanyrefsExc::~EtoomanyrefsExc() Unexecuted instantiation: Iex_opencv::EtimedoutExc::~EtimedoutExc() Unexecuted instantiation: Iex_opencv::EconnrefusedExc::~EconnrefusedExc() Unexecuted instantiation: Iex_opencv::EhostdownExc::~EhostdownExc() Unexecuted instantiation: Iex_opencv::EhostunreachExc::~EhostunreachExc() Unexecuted instantiation: Iex_opencv::EalreadyExc::~EalreadyExc() Unexecuted instantiation: Iex_opencv::EinprogressExc::~EinprogressExc() Unexecuted instantiation: Iex_opencv::EstaleExc::~EstaleExc() Unexecuted instantiation: Iex_opencv::EioresidExc::~EioresidExc() Unexecuted instantiation: Iex_opencv::EucleanExc::~EucleanExc() Unexecuted instantiation: Iex_opencv::EnotnamExc::~EnotnamExc() Unexecuted instantiation: Iex_opencv::EnavailExc::~EnavailExc() Unexecuted instantiation: Iex_opencv::EisnamExc::~EisnamExc() Unexecuted instantiation: Iex_opencv::EremoteioExc::~EremoteioExc() Unexecuted instantiation: Iex_opencv::EinitExc::~EinitExc() Unexecuted instantiation: Iex_opencv::EremdevExc::~EremdevExc() Unexecuted instantiation: Iex_opencv::EcanceledExc::~EcanceledExc() Unexecuted instantiation: Iex_opencv::EnolimfileExc::~EnolimfileExc() Unexecuted instantiation: Iex_opencv::EproclimExc::~EproclimExc() Unexecuted instantiation: Iex_opencv::EdisjointExc::~EdisjointExc() Unexecuted instantiation: Iex_opencv::EnologinExc::~EnologinExc() Unexecuted instantiation: Iex_opencv::EloginlimExc::~EloginlimExc() Unexecuted instantiation: Iex_opencv::EgrouploopExc::~EgrouploopExc() Unexecuted instantiation: Iex_opencv::EnoattachExc::~EnoattachExc() Unexecuted instantiation: Iex_opencv::EnotsupExc::~EnotsupExc() Unexecuted instantiation: Iex_opencv::EnoattrExc::~EnoattrExc() Unexecuted instantiation: Iex_opencv::EdircorruptedExc::~EdircorruptedExc() Unexecuted instantiation: Iex_opencv::EdquotExc::~EdquotExc() Unexecuted instantiation: Iex_opencv::EnfsremoteExc::~EnfsremoteExc() Unexecuted instantiation: Iex_opencv::EcontrollerExc::~EcontrollerExc() Unexecuted instantiation: Iex_opencv::EnotcontrollerExc::~EnotcontrollerExc() Unexecuted instantiation: Iex_opencv::EenqueuedExc::~EenqueuedExc() Unexecuted instantiation: Iex_opencv::EnotenqueuedExc::~EnotenqueuedExc() Unexecuted instantiation: Iex_opencv::EjoinedExc::~EjoinedExc() Unexecuted instantiation: Iex_opencv::EnotjoinedExc::~EnotjoinedExc() Unexecuted instantiation: Iex_opencv::EnoprocExc::~EnoprocExc() Unexecuted instantiation: Iex_opencv::EmustrunExc::~EmustrunExc() Unexecuted instantiation: Iex_opencv::EnotstoppedExc::~EnotstoppedExc() Unexecuted instantiation: Iex_opencv::EclockcpuExc::~EclockcpuExc() Unexecuted instantiation: Iex_opencv::EinvalstateExc::~EinvalstateExc() Unexecuted instantiation: Iex_opencv::EnoexistExc::~EnoexistExc() Unexecuted instantiation: Iex_opencv::EendofminorExc::~EendofminorExc() Unexecuted instantiation: Iex_opencv::EbufsizeExc::~EbufsizeExc() Unexecuted instantiation: Iex_opencv::EemptyExc::~EemptyExc() Unexecuted instantiation: Iex_opencv::EnointrgroupExc::~EnointrgroupExc() Unexecuted instantiation: Iex_opencv::EinvalmodeExc::~EinvalmodeExc() Unexecuted instantiation: Iex_opencv::EcantextentExc::~EcantextentExc() Unexecuted instantiation: Iex_opencv::EinvaltimeExc::~EinvaltimeExc() Unexecuted instantiation: Iex_opencv::EdestroyedExc::~EdestroyedExc() |
140 | | }; |
141 | | |
142 | | // For backward compatibility. |
143 | | #define DEFINE_EXC(name, base) DEFINE_EXC_EXP(, name, base) |
144 | | |
145 | | |
146 | | //-------------------------------------------------------- |
147 | | // Some exceptions which should be useful in most programs |
148 | | //-------------------------------------------------------- |
149 | | DEFINE_EXC_EXP (IEX_EXPORT, ArgExc, BaseExc) // Invalid arguments to a function call |
150 | | |
151 | | DEFINE_EXC_EXP (IEX_EXPORT, LogicExc, BaseExc) // General error in a program's logic, |
152 | | // for example, a function was called |
153 | | // in a context where the call does |
154 | | // not make sense. |
155 | | |
156 | | DEFINE_EXC_EXP (IEX_EXPORT, InputExc, BaseExc) // Invalid input data, e.g. from a file |
157 | | |
158 | | DEFINE_EXC_EXP (IEX_EXPORT, IoExc, BaseExc) // Input or output operation failed |
159 | | |
160 | | DEFINE_EXC_EXP (IEX_EXPORT, MathExc, BaseExc) // Arithmetic exception; more specific |
161 | | // exceptions derived from this class |
162 | | // are defined in ExcMath.h |
163 | | |
164 | | DEFINE_EXC_EXP (IEX_EXPORT, ErrnoExc, BaseExc) // Base class for exceptions corresponding |
165 | | // to errno values (see errno.h); more |
166 | | // specific exceptions derived from this |
167 | | // class are defined in ExcErrno.h |
168 | | |
169 | | DEFINE_EXC_EXP (IEX_EXPORT, NoImplExc, BaseExc) // Missing method exception e.g. from a |
170 | | // call to a method that is only partially |
171 | | // or not at all implemented. A reminder |
172 | | // to lazy software people to get back |
173 | | // to work. |
174 | | |
175 | | DEFINE_EXC_EXP (IEX_EXPORT, NullExc, BaseExc) // A pointer is inappropriately null. |
176 | | |
177 | | DEFINE_EXC_EXP (IEX_EXPORT, TypeExc, BaseExc) // An object is an inappropriate type, |
178 | | // i.e. a dynamnic_cast failed. |
179 | | |
180 | | |
181 | | //---------------------------------------------------------------------- |
182 | | // Stack-tracing support: |
183 | | // |
184 | | // setStackTracer(st) |
185 | | // |
186 | | // installs a stack-tracing routine, st, which will be called from |
187 | | // class BaseExc's constructor every time an exception derived from |
188 | | // BaseExc is thrown. The stack-tracing routine should return a |
189 | | // string that contains a printable representation of the program's |
190 | | // current call stack. This string will be stored in the BaseExc |
191 | | // object; the string is accesible via the BaseExc::stackTrace() |
192 | | // method. |
193 | | // |
194 | | // setStackTracer(0) |
195 | | // |
196 | | // removes the current stack tracing routine. When an exception |
197 | | // derived from BaseExc is thrown, the stack trace string stored |
198 | | // in the BaseExc object will be empty. |
199 | | // |
200 | | // stackTracer() |
201 | | // |
202 | | // returns a pointer to the current stack-tracing routine, or 0 |
203 | | // if there is no current stack stack-tracing routine. |
204 | | // |
205 | | //---------------------------------------------------------------------- |
206 | | |
207 | | typedef std::string (* StackTracer) (); |
208 | | |
209 | | IEX_EXPORT void setStackTracer (StackTracer stackTracer); |
210 | | IEX_EXPORT StackTracer stackTracer (); |
211 | | |
212 | | |
213 | | IEX_INTERNAL_NAMESPACE_HEADER_EXIT |
214 | | |
215 | | #endif // INCLUDED_IEXBASEEXC_H |