Coverage Report

Created: 2023-12-08 06:53

/src/freeimage-svn/FreeImage/trunk/Source/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::string, 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 e.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
    //--------------------------------------------------
106
    // Stack trace for the point at which the exception
107
    // was thrown.  The stack trace will be an empty
108
    // string unless a working stack-tracing routine
109
    // has been installed (see below, setStackTracer()).
110
    //--------------------------------------------------
111
112
    IEX_EXPORT const std::string &  stackTrace () const;
113
114
  private:
115
116
    std::string                     _stackTrace;
117
};
118
119
120
//-----------------------------------------------------
121
// A macro to save typing when declararing an exception
122
// class derived directly or indirectly from BaseExc:
123
//-----------------------------------------------------
124
125
#define DEFINE_EXC_EXP(exp, name, base)                         \
126
    class exp name: public base                                 \
127
    {                                                           \
128
      public:                                                   \
129
0
        name()                         throw(): base (0)    {}  \
Unexecuted instantiation: Iex_2_2::ArgExc::ArgExc()
Unexecuted instantiation: Iex_2_2::LogicExc::LogicExc()
Unexecuted instantiation: Iex_2_2::InputExc::InputExc()
Unexecuted instantiation: Iex_2_2::IoExc::IoExc()
Unexecuted instantiation: Iex_2_2::MathExc::MathExc()
Unexecuted instantiation: Iex_2_2::ErrnoExc::ErrnoExc()
Unexecuted instantiation: Iex_2_2::NoImplExc::NoImplExc()
Unexecuted instantiation: Iex_2_2::NullExc::NullExc()
Unexecuted instantiation: Iex_2_2::TypeExc::TypeExc()
Unexecuted instantiation: Iex_2_2::OverflowExc::OverflowExc()
Unexecuted instantiation: Iex_2_2::UnderflowExc::UnderflowExc()
Unexecuted instantiation: Iex_2_2::DivzeroExc::DivzeroExc()
Unexecuted instantiation: Iex_2_2::InexactExc::InexactExc()
Unexecuted instantiation: Iex_2_2::InvalidFpOpExc::InvalidFpOpExc()
Unexecuted instantiation: Imath_2_2::NullVecExc::NullVecExc()
Unexecuted instantiation: Imath_2_2::InfPointExc::InfPointExc()
Unexecuted instantiation: Imath_2_2::NullQuatExc::NullQuatExc()
Unexecuted instantiation: Imath_2_2::SingMatrixExc::SingMatrixExc()
Unexecuted instantiation: Imath_2_2::ZeroScaleExc::ZeroScaleExc()
Unexecuted instantiation: Imath_2_2::IntVecNormalizeExc::IntVecNormalizeExc()
Unexecuted instantiation: Iex_2_2::EpermExc::EpermExc()
Unexecuted instantiation: Iex_2_2::EnoentExc::EnoentExc()
Unexecuted instantiation: Iex_2_2::EsrchExc::EsrchExc()
Unexecuted instantiation: Iex_2_2::EintrExc::EintrExc()
Unexecuted instantiation: Iex_2_2::EioExc::EioExc()
Unexecuted instantiation: Iex_2_2::EnxioExc::EnxioExc()
Unexecuted instantiation: Iex_2_2::E2bigExc::E2bigExc()
Unexecuted instantiation: Iex_2_2::EnoexecExc::EnoexecExc()
Unexecuted instantiation: Iex_2_2::EbadfExc::EbadfExc()
Unexecuted instantiation: Iex_2_2::EchildExc::EchildExc()
Unexecuted instantiation: Iex_2_2::EagainExc::EagainExc()
Unexecuted instantiation: Iex_2_2::EnomemExc::EnomemExc()
Unexecuted instantiation: Iex_2_2::EaccesExc::EaccesExc()
Unexecuted instantiation: Iex_2_2::EfaultExc::EfaultExc()
Unexecuted instantiation: Iex_2_2::EnotblkExc::EnotblkExc()
Unexecuted instantiation: Iex_2_2::EbusyExc::EbusyExc()
Unexecuted instantiation: Iex_2_2::EexistExc::EexistExc()
Unexecuted instantiation: Iex_2_2::ExdevExc::ExdevExc()
Unexecuted instantiation: Iex_2_2::EnodevExc::EnodevExc()
Unexecuted instantiation: Iex_2_2::EnotdirExc::EnotdirExc()
Unexecuted instantiation: Iex_2_2::EisdirExc::EisdirExc()
Unexecuted instantiation: Iex_2_2::EinvalExc::EinvalExc()
Unexecuted instantiation: Iex_2_2::EnfileExc::EnfileExc()
Unexecuted instantiation: Iex_2_2::EmfileExc::EmfileExc()
Unexecuted instantiation: Iex_2_2::EnottyExc::EnottyExc()
Unexecuted instantiation: Iex_2_2::EtxtbsyExc::EtxtbsyExc()
Unexecuted instantiation: Iex_2_2::EfbigExc::EfbigExc()
Unexecuted instantiation: Iex_2_2::EnospcExc::EnospcExc()
Unexecuted instantiation: Iex_2_2::EspipeExc::EspipeExc()
Unexecuted instantiation: Iex_2_2::ErofsExc::ErofsExc()
Unexecuted instantiation: Iex_2_2::EmlinkExc::EmlinkExc()
Unexecuted instantiation: Iex_2_2::EpipeExc::EpipeExc()
Unexecuted instantiation: Iex_2_2::EdomExc::EdomExc()
Unexecuted instantiation: Iex_2_2::ErangeExc::ErangeExc()
Unexecuted instantiation: Iex_2_2::EnomsgExc::EnomsgExc()
Unexecuted instantiation: Iex_2_2::EidrmExc::EidrmExc()
Unexecuted instantiation: Iex_2_2::EchrngExc::EchrngExc()
Unexecuted instantiation: Iex_2_2::El2nsyncExc::El2nsyncExc()
Unexecuted instantiation: Iex_2_2::El3hltExc::El3hltExc()
Unexecuted instantiation: Iex_2_2::El3rstExc::El3rstExc()
Unexecuted instantiation: Iex_2_2::ElnrngExc::ElnrngExc()
Unexecuted instantiation: Iex_2_2::EunatchExc::EunatchExc()
Unexecuted instantiation: Iex_2_2::EnocsiExc::EnocsiExc()
Unexecuted instantiation: Iex_2_2::El2hltExc::El2hltExc()
Unexecuted instantiation: Iex_2_2::EdeadlkExc::EdeadlkExc()
Unexecuted instantiation: Iex_2_2::EnolckExc::EnolckExc()
Unexecuted instantiation: Iex_2_2::EbadeExc::EbadeExc()
Unexecuted instantiation: Iex_2_2::EbadrExc::EbadrExc()
Unexecuted instantiation: Iex_2_2::ExfullExc::ExfullExc()
Unexecuted instantiation: Iex_2_2::EnoanoExc::EnoanoExc()
Unexecuted instantiation: Iex_2_2::EbadrqcExc::EbadrqcExc()
Unexecuted instantiation: Iex_2_2::EbadsltExc::EbadsltExc()
Unexecuted instantiation: Iex_2_2::EdeadlockExc::EdeadlockExc()
Unexecuted instantiation: Iex_2_2::EbfontExc::EbfontExc()
Unexecuted instantiation: Iex_2_2::EnostrExc::EnostrExc()
Unexecuted instantiation: Iex_2_2::EnodataExc::EnodataExc()
Unexecuted instantiation: Iex_2_2::EtimeExc::EtimeExc()
Unexecuted instantiation: Iex_2_2::EnosrExc::EnosrExc()
Unexecuted instantiation: Iex_2_2::EnonetExc::EnonetExc()
Unexecuted instantiation: Iex_2_2::EnopkgExc::EnopkgExc()
Unexecuted instantiation: Iex_2_2::EremoteExc::EremoteExc()
Unexecuted instantiation: Iex_2_2::EnolinkExc::EnolinkExc()
Unexecuted instantiation: Iex_2_2::EadvExc::EadvExc()
Unexecuted instantiation: Iex_2_2::EsrmntExc::EsrmntExc()
Unexecuted instantiation: Iex_2_2::EcommExc::EcommExc()
Unexecuted instantiation: Iex_2_2::EprotoExc::EprotoExc()
Unexecuted instantiation: Iex_2_2::EmultihopExc::EmultihopExc()
Unexecuted instantiation: Iex_2_2::EbadmsgExc::EbadmsgExc()
Unexecuted instantiation: Iex_2_2::EnametoolongExc::EnametoolongExc()
Unexecuted instantiation: Iex_2_2::EoverflowExc::EoverflowExc()
Unexecuted instantiation: Iex_2_2::EnotuniqExc::EnotuniqExc()
Unexecuted instantiation: Iex_2_2::EbadfdExc::EbadfdExc()
Unexecuted instantiation: Iex_2_2::EremchgExc::EremchgExc()
Unexecuted instantiation: Iex_2_2::ElibaccExc::ElibaccExc()
Unexecuted instantiation: Iex_2_2::ElibbadExc::ElibbadExc()
Unexecuted instantiation: Iex_2_2::ElibscnExc::ElibscnExc()
Unexecuted instantiation: Iex_2_2::ElibmaxExc::ElibmaxExc()
Unexecuted instantiation: Iex_2_2::ElibexecExc::ElibexecExc()
Unexecuted instantiation: Iex_2_2::EilseqExc::EilseqExc()
Unexecuted instantiation: Iex_2_2::EnosysExc::EnosysExc()
Unexecuted instantiation: Iex_2_2::EloopExc::EloopExc()
Unexecuted instantiation: Iex_2_2::ErestartExc::ErestartExc()
Unexecuted instantiation: Iex_2_2::EstrpipeExc::EstrpipeExc()
Unexecuted instantiation: Iex_2_2::EnotemptyExc::EnotemptyExc()
Unexecuted instantiation: Iex_2_2::EusersExc::EusersExc()
Unexecuted instantiation: Iex_2_2::EnotsockExc::EnotsockExc()
Unexecuted instantiation: Iex_2_2::EdestaddrreqExc::EdestaddrreqExc()
Unexecuted instantiation: Iex_2_2::EmsgsizeExc::EmsgsizeExc()
Unexecuted instantiation: Iex_2_2::EprototypeExc::EprototypeExc()
Unexecuted instantiation: Iex_2_2::EnoprotooptExc::EnoprotooptExc()
Unexecuted instantiation: Iex_2_2::EprotonosupportExc::EprotonosupportExc()
Unexecuted instantiation: Iex_2_2::EsocktnosupportExc::EsocktnosupportExc()
Unexecuted instantiation: Iex_2_2::EopnotsuppExc::EopnotsuppExc()
Unexecuted instantiation: Iex_2_2::EpfnosupportExc::EpfnosupportExc()
Unexecuted instantiation: Iex_2_2::EafnosupportExc::EafnosupportExc()
Unexecuted instantiation: Iex_2_2::EaddrinuseExc::EaddrinuseExc()
Unexecuted instantiation: Iex_2_2::EaddrnotavailExc::EaddrnotavailExc()
Unexecuted instantiation: Iex_2_2::EnetdownExc::EnetdownExc()
Unexecuted instantiation: Iex_2_2::EnetunreachExc::EnetunreachExc()
Unexecuted instantiation: Iex_2_2::EnetresetExc::EnetresetExc()
Unexecuted instantiation: Iex_2_2::EconnabortedExc::EconnabortedExc()
Unexecuted instantiation: Iex_2_2::EconnresetExc::EconnresetExc()
Unexecuted instantiation: Iex_2_2::EnobufsExc::EnobufsExc()
Unexecuted instantiation: Iex_2_2::EisconnExc::EisconnExc()
Unexecuted instantiation: Iex_2_2::EnotconnExc::EnotconnExc()
Unexecuted instantiation: Iex_2_2::EshutdownExc::EshutdownExc()
Unexecuted instantiation: Iex_2_2::EtoomanyrefsExc::EtoomanyrefsExc()
Unexecuted instantiation: Iex_2_2::EtimedoutExc::EtimedoutExc()
Unexecuted instantiation: Iex_2_2::EconnrefusedExc::EconnrefusedExc()
Unexecuted instantiation: Iex_2_2::EhostdownExc::EhostdownExc()
Unexecuted instantiation: Iex_2_2::EhostunreachExc::EhostunreachExc()
Unexecuted instantiation: Iex_2_2::EalreadyExc::EalreadyExc()
Unexecuted instantiation: Iex_2_2::EinprogressExc::EinprogressExc()
Unexecuted instantiation: Iex_2_2::EstaleExc::EstaleExc()
Unexecuted instantiation: Iex_2_2::EioresidExc::EioresidExc()
Unexecuted instantiation: Iex_2_2::EucleanExc::EucleanExc()
Unexecuted instantiation: Iex_2_2::EnotnamExc::EnotnamExc()
Unexecuted instantiation: Iex_2_2::EnavailExc::EnavailExc()
Unexecuted instantiation: Iex_2_2::EisnamExc::EisnamExc()
Unexecuted instantiation: Iex_2_2::EremoteioExc::EremoteioExc()
Unexecuted instantiation: Iex_2_2::EinitExc::EinitExc()
Unexecuted instantiation: Iex_2_2::EremdevExc::EremdevExc()
Unexecuted instantiation: Iex_2_2::EcanceledExc::EcanceledExc()
Unexecuted instantiation: Iex_2_2::EnolimfileExc::EnolimfileExc()
Unexecuted instantiation: Iex_2_2::EproclimExc::EproclimExc()
Unexecuted instantiation: Iex_2_2::EdisjointExc::EdisjointExc()
Unexecuted instantiation: Iex_2_2::EnologinExc::EnologinExc()
Unexecuted instantiation: Iex_2_2::EloginlimExc::EloginlimExc()
Unexecuted instantiation: Iex_2_2::EgrouploopExc::EgrouploopExc()
Unexecuted instantiation: Iex_2_2::EnoattachExc::EnoattachExc()
Unexecuted instantiation: Iex_2_2::EnotsupExc::EnotsupExc()
Unexecuted instantiation: Iex_2_2::EnoattrExc::EnoattrExc()
Unexecuted instantiation: Iex_2_2::EdircorruptedExc::EdircorruptedExc()
Unexecuted instantiation: Iex_2_2::EdquotExc::EdquotExc()
Unexecuted instantiation: Iex_2_2::EnfsremoteExc::EnfsremoteExc()
Unexecuted instantiation: Iex_2_2::EcontrollerExc::EcontrollerExc()
Unexecuted instantiation: Iex_2_2::EnotcontrollerExc::EnotcontrollerExc()
Unexecuted instantiation: Iex_2_2::EenqueuedExc::EenqueuedExc()
Unexecuted instantiation: Iex_2_2::EnotenqueuedExc::EnotenqueuedExc()
Unexecuted instantiation: Iex_2_2::EjoinedExc::EjoinedExc()
Unexecuted instantiation: Iex_2_2::EnotjoinedExc::EnotjoinedExc()
Unexecuted instantiation: Iex_2_2::EnoprocExc::EnoprocExc()
Unexecuted instantiation: Iex_2_2::EmustrunExc::EmustrunExc()
Unexecuted instantiation: Iex_2_2::EnotstoppedExc::EnotstoppedExc()
Unexecuted instantiation: Iex_2_2::EclockcpuExc::EclockcpuExc()
Unexecuted instantiation: Iex_2_2::EinvalstateExc::EinvalstateExc()
Unexecuted instantiation: Iex_2_2::EnoexistExc::EnoexistExc()
Unexecuted instantiation: Iex_2_2::EendofminorExc::EendofminorExc()
Unexecuted instantiation: Iex_2_2::EbufsizeExc::EbufsizeExc()
Unexecuted instantiation: Iex_2_2::EemptyExc::EemptyExc()
Unexecuted instantiation: Iex_2_2::EnointrgroupExc::EnointrgroupExc()
Unexecuted instantiation: Iex_2_2::EinvalmodeExc::EinvalmodeExc()
Unexecuted instantiation: Iex_2_2::EcantextentExc::EcantextentExc()
Unexecuted instantiation: Iex_2_2::EinvaltimeExc::EinvaltimeExc()
Unexecuted instantiation: Iex_2_2::EdestroyedExc::EdestroyedExc()
130
0
        name (const char* text)        throw(): base (text) {}  \
Unexecuted instantiation: Iex_2_2::ArgExc::ArgExc(char const*)
Unexecuted instantiation: Iex_2_2::LogicExc::LogicExc(char const*)
Unexecuted instantiation: Iex_2_2::InputExc::InputExc(char const*)
Unexecuted instantiation: Iex_2_2::IoExc::IoExc(char const*)
Unexecuted instantiation: Iex_2_2::MathExc::MathExc(char const*)
Unexecuted instantiation: Iex_2_2::ErrnoExc::ErrnoExc(char const*)
Unexecuted instantiation: Iex_2_2::NoImplExc::NoImplExc(char const*)
Unexecuted instantiation: Iex_2_2::NullExc::NullExc(char const*)
Unexecuted instantiation: Iex_2_2::TypeExc::TypeExc(char const*)
Unexecuted instantiation: Iex_2_2::OverflowExc::OverflowExc(char const*)
Unexecuted instantiation: Iex_2_2::UnderflowExc::UnderflowExc(char const*)
Unexecuted instantiation: Iex_2_2::DivzeroExc::DivzeroExc(char const*)
Unexecuted instantiation: Iex_2_2::InexactExc::InexactExc(char const*)
Unexecuted instantiation: Iex_2_2::InvalidFpOpExc::InvalidFpOpExc(char const*)
Unexecuted instantiation: Imath_2_2::NullVecExc::NullVecExc(char const*)
Unexecuted instantiation: Imath_2_2::InfPointExc::InfPointExc(char const*)
Unexecuted instantiation: Imath_2_2::NullQuatExc::NullQuatExc(char const*)
Unexecuted instantiation: Imath_2_2::SingMatrixExc::SingMatrixExc(char const*)
Unexecuted instantiation: Imath_2_2::ZeroScaleExc::ZeroScaleExc(char const*)
Unexecuted instantiation: Imath_2_2::IntVecNormalizeExc::IntVecNormalizeExc(char const*)
Unexecuted instantiation: Iex_2_2::EpermExc::EpermExc(char const*)
Unexecuted instantiation: Iex_2_2::EnoentExc::EnoentExc(char const*)
Unexecuted instantiation: Iex_2_2::EsrchExc::EsrchExc(char const*)
Unexecuted instantiation: Iex_2_2::EintrExc::EintrExc(char const*)
Unexecuted instantiation: Iex_2_2::EioExc::EioExc(char const*)
Unexecuted instantiation: Iex_2_2::EnxioExc::EnxioExc(char const*)
Unexecuted instantiation: Iex_2_2::E2bigExc::E2bigExc(char const*)
Unexecuted instantiation: Iex_2_2::EnoexecExc::EnoexecExc(char const*)
Unexecuted instantiation: Iex_2_2::EbadfExc::EbadfExc(char const*)
Unexecuted instantiation: Iex_2_2::EchildExc::EchildExc(char const*)
Unexecuted instantiation: Iex_2_2::EagainExc::EagainExc(char const*)
Unexecuted instantiation: Iex_2_2::EnomemExc::EnomemExc(char const*)
Unexecuted instantiation: Iex_2_2::EaccesExc::EaccesExc(char const*)
Unexecuted instantiation: Iex_2_2::EfaultExc::EfaultExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotblkExc::EnotblkExc(char const*)
Unexecuted instantiation: Iex_2_2::EbusyExc::EbusyExc(char const*)
Unexecuted instantiation: Iex_2_2::EexistExc::EexistExc(char const*)
Unexecuted instantiation: Iex_2_2::ExdevExc::ExdevExc(char const*)
Unexecuted instantiation: Iex_2_2::EnodevExc::EnodevExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotdirExc::EnotdirExc(char const*)
Unexecuted instantiation: Iex_2_2::EisdirExc::EisdirExc(char const*)
Unexecuted instantiation: Iex_2_2::EinvalExc::EinvalExc(char const*)
Unexecuted instantiation: Iex_2_2::EnfileExc::EnfileExc(char const*)
Unexecuted instantiation: Iex_2_2::EmfileExc::EmfileExc(char const*)
Unexecuted instantiation: Iex_2_2::EnottyExc::EnottyExc(char const*)
Unexecuted instantiation: Iex_2_2::EtxtbsyExc::EtxtbsyExc(char const*)
Unexecuted instantiation: Iex_2_2::EfbigExc::EfbigExc(char const*)
Unexecuted instantiation: Iex_2_2::EnospcExc::EnospcExc(char const*)
Unexecuted instantiation: Iex_2_2::EspipeExc::EspipeExc(char const*)
Unexecuted instantiation: Iex_2_2::ErofsExc::ErofsExc(char const*)
Unexecuted instantiation: Iex_2_2::EmlinkExc::EmlinkExc(char const*)
Unexecuted instantiation: Iex_2_2::EpipeExc::EpipeExc(char const*)
Unexecuted instantiation: Iex_2_2::EdomExc::EdomExc(char const*)
Unexecuted instantiation: Iex_2_2::ErangeExc::ErangeExc(char const*)
Unexecuted instantiation: Iex_2_2::EnomsgExc::EnomsgExc(char const*)
Unexecuted instantiation: Iex_2_2::EidrmExc::EidrmExc(char const*)
Unexecuted instantiation: Iex_2_2::EchrngExc::EchrngExc(char const*)
Unexecuted instantiation: Iex_2_2::El2nsyncExc::El2nsyncExc(char const*)
Unexecuted instantiation: Iex_2_2::El3hltExc::El3hltExc(char const*)
Unexecuted instantiation: Iex_2_2::El3rstExc::El3rstExc(char const*)
Unexecuted instantiation: Iex_2_2::ElnrngExc::ElnrngExc(char const*)
Unexecuted instantiation: Iex_2_2::EunatchExc::EunatchExc(char const*)
Unexecuted instantiation: Iex_2_2::EnocsiExc::EnocsiExc(char const*)
Unexecuted instantiation: Iex_2_2::El2hltExc::El2hltExc(char const*)
Unexecuted instantiation: Iex_2_2::EdeadlkExc::EdeadlkExc(char const*)
Unexecuted instantiation: Iex_2_2::EnolckExc::EnolckExc(char const*)
Unexecuted instantiation: Iex_2_2::EbadeExc::EbadeExc(char const*)
Unexecuted instantiation: Iex_2_2::EbadrExc::EbadrExc(char const*)
Unexecuted instantiation: Iex_2_2::ExfullExc::ExfullExc(char const*)
Unexecuted instantiation: Iex_2_2::EnoanoExc::EnoanoExc(char const*)
Unexecuted instantiation: Iex_2_2::EbadrqcExc::EbadrqcExc(char const*)
Unexecuted instantiation: Iex_2_2::EbadsltExc::EbadsltExc(char const*)
Unexecuted instantiation: Iex_2_2::EdeadlockExc::EdeadlockExc(char const*)
Unexecuted instantiation: Iex_2_2::EbfontExc::EbfontExc(char const*)
Unexecuted instantiation: Iex_2_2::EnostrExc::EnostrExc(char const*)
Unexecuted instantiation: Iex_2_2::EnodataExc::EnodataExc(char const*)
Unexecuted instantiation: Iex_2_2::EtimeExc::EtimeExc(char const*)
Unexecuted instantiation: Iex_2_2::EnosrExc::EnosrExc(char const*)
Unexecuted instantiation: Iex_2_2::EnonetExc::EnonetExc(char const*)
Unexecuted instantiation: Iex_2_2::EnopkgExc::EnopkgExc(char const*)
Unexecuted instantiation: Iex_2_2::EremoteExc::EremoteExc(char const*)
Unexecuted instantiation: Iex_2_2::EnolinkExc::EnolinkExc(char const*)
Unexecuted instantiation: Iex_2_2::EadvExc::EadvExc(char const*)
Unexecuted instantiation: Iex_2_2::EsrmntExc::EsrmntExc(char const*)
Unexecuted instantiation: Iex_2_2::EcommExc::EcommExc(char const*)
Unexecuted instantiation: Iex_2_2::EprotoExc::EprotoExc(char const*)
Unexecuted instantiation: Iex_2_2::EmultihopExc::EmultihopExc(char const*)
Unexecuted instantiation: Iex_2_2::EbadmsgExc::EbadmsgExc(char const*)
Unexecuted instantiation: Iex_2_2::EnametoolongExc::EnametoolongExc(char const*)
Unexecuted instantiation: Iex_2_2::EoverflowExc::EoverflowExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotuniqExc::EnotuniqExc(char const*)
Unexecuted instantiation: Iex_2_2::EbadfdExc::EbadfdExc(char const*)
Unexecuted instantiation: Iex_2_2::EremchgExc::EremchgExc(char const*)
Unexecuted instantiation: Iex_2_2::ElibaccExc::ElibaccExc(char const*)
Unexecuted instantiation: Iex_2_2::ElibbadExc::ElibbadExc(char const*)
Unexecuted instantiation: Iex_2_2::ElibscnExc::ElibscnExc(char const*)
Unexecuted instantiation: Iex_2_2::ElibmaxExc::ElibmaxExc(char const*)
Unexecuted instantiation: Iex_2_2::ElibexecExc::ElibexecExc(char const*)
Unexecuted instantiation: Iex_2_2::EilseqExc::EilseqExc(char const*)
Unexecuted instantiation: Iex_2_2::EnosysExc::EnosysExc(char const*)
Unexecuted instantiation: Iex_2_2::EloopExc::EloopExc(char const*)
Unexecuted instantiation: Iex_2_2::ErestartExc::ErestartExc(char const*)
Unexecuted instantiation: Iex_2_2::EstrpipeExc::EstrpipeExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotemptyExc::EnotemptyExc(char const*)
Unexecuted instantiation: Iex_2_2::EusersExc::EusersExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotsockExc::EnotsockExc(char const*)
Unexecuted instantiation: Iex_2_2::EdestaddrreqExc::EdestaddrreqExc(char const*)
Unexecuted instantiation: Iex_2_2::EmsgsizeExc::EmsgsizeExc(char const*)
Unexecuted instantiation: Iex_2_2::EprototypeExc::EprototypeExc(char const*)
Unexecuted instantiation: Iex_2_2::EnoprotooptExc::EnoprotooptExc(char const*)
Unexecuted instantiation: Iex_2_2::EprotonosupportExc::EprotonosupportExc(char const*)
Unexecuted instantiation: Iex_2_2::EsocktnosupportExc::EsocktnosupportExc(char const*)
Unexecuted instantiation: Iex_2_2::EopnotsuppExc::EopnotsuppExc(char const*)
Unexecuted instantiation: Iex_2_2::EpfnosupportExc::EpfnosupportExc(char const*)
Unexecuted instantiation: Iex_2_2::EafnosupportExc::EafnosupportExc(char const*)
Unexecuted instantiation: Iex_2_2::EaddrinuseExc::EaddrinuseExc(char const*)
Unexecuted instantiation: Iex_2_2::EaddrnotavailExc::EaddrnotavailExc(char const*)
Unexecuted instantiation: Iex_2_2::EnetdownExc::EnetdownExc(char const*)
Unexecuted instantiation: Iex_2_2::EnetunreachExc::EnetunreachExc(char const*)
Unexecuted instantiation: Iex_2_2::EnetresetExc::EnetresetExc(char const*)
Unexecuted instantiation: Iex_2_2::EconnabortedExc::EconnabortedExc(char const*)
Unexecuted instantiation: Iex_2_2::EconnresetExc::EconnresetExc(char const*)
Unexecuted instantiation: Iex_2_2::EnobufsExc::EnobufsExc(char const*)
Unexecuted instantiation: Iex_2_2::EisconnExc::EisconnExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotconnExc::EnotconnExc(char const*)
Unexecuted instantiation: Iex_2_2::EshutdownExc::EshutdownExc(char const*)
Unexecuted instantiation: Iex_2_2::EtoomanyrefsExc::EtoomanyrefsExc(char const*)
Unexecuted instantiation: Iex_2_2::EtimedoutExc::EtimedoutExc(char const*)
Unexecuted instantiation: Iex_2_2::EconnrefusedExc::EconnrefusedExc(char const*)
Unexecuted instantiation: Iex_2_2::EhostdownExc::EhostdownExc(char const*)
Unexecuted instantiation: Iex_2_2::EhostunreachExc::EhostunreachExc(char const*)
Unexecuted instantiation: Iex_2_2::EalreadyExc::EalreadyExc(char const*)
Unexecuted instantiation: Iex_2_2::EinprogressExc::EinprogressExc(char const*)
Unexecuted instantiation: Iex_2_2::EstaleExc::EstaleExc(char const*)
Unexecuted instantiation: Iex_2_2::EioresidExc::EioresidExc(char const*)
Unexecuted instantiation: Iex_2_2::EucleanExc::EucleanExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotnamExc::EnotnamExc(char const*)
Unexecuted instantiation: Iex_2_2::EnavailExc::EnavailExc(char const*)
Unexecuted instantiation: Iex_2_2::EisnamExc::EisnamExc(char const*)
Unexecuted instantiation: Iex_2_2::EremoteioExc::EremoteioExc(char const*)
Unexecuted instantiation: Iex_2_2::EinitExc::EinitExc(char const*)
Unexecuted instantiation: Iex_2_2::EremdevExc::EremdevExc(char const*)
Unexecuted instantiation: Iex_2_2::EcanceledExc::EcanceledExc(char const*)
Unexecuted instantiation: Iex_2_2::EnolimfileExc::EnolimfileExc(char const*)
Unexecuted instantiation: Iex_2_2::EproclimExc::EproclimExc(char const*)
Unexecuted instantiation: Iex_2_2::EdisjointExc::EdisjointExc(char const*)
Unexecuted instantiation: Iex_2_2::EnologinExc::EnologinExc(char const*)
Unexecuted instantiation: Iex_2_2::EloginlimExc::EloginlimExc(char const*)
Unexecuted instantiation: Iex_2_2::EgrouploopExc::EgrouploopExc(char const*)
Unexecuted instantiation: Iex_2_2::EnoattachExc::EnoattachExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotsupExc::EnotsupExc(char const*)
Unexecuted instantiation: Iex_2_2::EnoattrExc::EnoattrExc(char const*)
Unexecuted instantiation: Iex_2_2::EdircorruptedExc::EdircorruptedExc(char const*)
Unexecuted instantiation: Iex_2_2::EdquotExc::EdquotExc(char const*)
Unexecuted instantiation: Iex_2_2::EnfsremoteExc::EnfsremoteExc(char const*)
Unexecuted instantiation: Iex_2_2::EcontrollerExc::EcontrollerExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotcontrollerExc::EnotcontrollerExc(char const*)
Unexecuted instantiation: Iex_2_2::EenqueuedExc::EenqueuedExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotenqueuedExc::EnotenqueuedExc(char const*)
Unexecuted instantiation: Iex_2_2::EjoinedExc::EjoinedExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotjoinedExc::EnotjoinedExc(char const*)
Unexecuted instantiation: Iex_2_2::EnoprocExc::EnoprocExc(char const*)
Unexecuted instantiation: Iex_2_2::EmustrunExc::EmustrunExc(char const*)
Unexecuted instantiation: Iex_2_2::EnotstoppedExc::EnotstoppedExc(char const*)
Unexecuted instantiation: Iex_2_2::EclockcpuExc::EclockcpuExc(char const*)
Unexecuted instantiation: Iex_2_2::EinvalstateExc::EinvalstateExc(char const*)
Unexecuted instantiation: Iex_2_2::EnoexistExc::EnoexistExc(char const*)
Unexecuted instantiation: Iex_2_2::EendofminorExc::EendofminorExc(char const*)
Unexecuted instantiation: Iex_2_2::EbufsizeExc::EbufsizeExc(char const*)
Unexecuted instantiation: Iex_2_2::EemptyExc::EemptyExc(char const*)
Unexecuted instantiation: Iex_2_2::EnointrgroupExc::EnointrgroupExc(char const*)
Unexecuted instantiation: Iex_2_2::EinvalmodeExc::EinvalmodeExc(char const*)
Unexecuted instantiation: Iex_2_2::EcantextentExc::EcantextentExc(char const*)
Unexecuted instantiation: Iex_2_2::EinvaltimeExc::EinvaltimeExc(char const*)
Unexecuted instantiation: Iex_2_2::EdestroyedExc::EdestroyedExc(char const*)
131
0
        name (const std::string &text) throw(): base (text) {}  \
Unexecuted instantiation: Iex_2_2::ArgExc::ArgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::LogicExc::LogicExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::InputExc::InputExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::IoExc::IoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::MathExc::MathExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ErrnoExc::ErrnoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::NoImplExc::NoImplExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::NullExc::NullExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::TypeExc::TypeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::OverflowExc::OverflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::UnderflowExc::UnderflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::DivzeroExc::DivzeroExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::InexactExc::InexactExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::InvalidFpOpExc::InvalidFpOpExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Imath_2_2::NullVecExc::NullVecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Imath_2_2::InfPointExc::InfPointExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Imath_2_2::NullQuatExc::NullQuatExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Imath_2_2::SingMatrixExc::SingMatrixExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Imath_2_2::ZeroScaleExc::ZeroScaleExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Imath_2_2::IntVecNormalizeExc::IntVecNormalizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EpermExc::EpermExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnoentExc::EnoentExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EsrchExc::EsrchExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EintrExc::EintrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EioExc::EioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnxioExc::EnxioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::E2bigExc::E2bigExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnoexecExc::EnoexecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EbadfExc::EbadfExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EchildExc::EchildExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EagainExc::EagainExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnomemExc::EnomemExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EaccesExc::EaccesExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EfaultExc::EfaultExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotblkExc::EnotblkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EbusyExc::EbusyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EexistExc::EexistExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ExdevExc::ExdevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnodevExc::EnodevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotdirExc::EnotdirExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EisdirExc::EisdirExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EinvalExc::EinvalExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnfileExc::EnfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EmfileExc::EmfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnottyExc::EnottyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EtxtbsyExc::EtxtbsyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EfbigExc::EfbigExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnospcExc::EnospcExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EspipeExc::EspipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ErofsExc::ErofsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EmlinkExc::EmlinkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EpipeExc::EpipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EdomExc::EdomExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ErangeExc::ErangeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnomsgExc::EnomsgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EidrmExc::EidrmExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EchrngExc::EchrngExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::El2nsyncExc::El2nsyncExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::El3hltExc::El3hltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::El3rstExc::El3rstExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ElnrngExc::ElnrngExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EunatchExc::EunatchExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::El2hltExc::El2hltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EdeadlkExc::EdeadlkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnolckExc::EnolckExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EbadeExc::EbadeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EbadrExc::EbadrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ExfullExc::ExfullExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnoanoExc::EnoanoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EbadrqcExc::EbadrqcExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EbadsltExc::EbadsltExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EbfontExc::EbfontExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnostrExc::EnostrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnodataExc::EnodataExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EtimeExc::EtimeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnosrExc::EnosrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnonetExc::EnonetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnopkgExc::EnopkgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EremoteExc::EremoteExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnolinkExc::EnolinkExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EadvExc::EadvExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EsrmntExc::EsrmntExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EcommExc::EcommExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EprotoExc::EprotoExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EmultihopExc::EmultihopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EbadmsgExc::EbadmsgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnametoolongExc::EnametoolongExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EoverflowExc::EoverflowExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotuniqExc::EnotuniqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EbadfdExc::EbadfdExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EremchgExc::EremchgExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ElibaccExc::ElibaccExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ElibbadExc::ElibbadExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ElibscnExc::ElibscnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ElibmaxExc::ElibmaxExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ElibexecExc::ElibexecExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EilseqExc::EilseqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnosysExc::EnosysExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EloopExc::EloopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::ErestartExc::ErestartExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EstrpipeExc::EstrpipeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotemptyExc::EnotemptyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EusersExc::EusersExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotsockExc::EnotsockExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EdestaddrreqExc::EdestaddrreqExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EmsgsizeExc::EmsgsizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EprototypeExc::EprototypeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnoprotooptExc::EnoprotooptExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EprotonosupportExc::EprotonosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EsocktnosupportExc::EsocktnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EopnotsuppExc::EopnotsuppExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EpfnosupportExc::EpfnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EafnosupportExc::EafnosupportExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EaddrinuseExc::EaddrinuseExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EaddrnotavailExc::EaddrnotavailExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnetdownExc::EnetdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnetunreachExc::EnetunreachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnetresetExc::EnetresetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EconnabortedExc::EconnabortedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EconnresetExc::EconnresetExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnobufsExc::EnobufsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EisconnExc::EisconnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotconnExc::EnotconnExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EshutdownExc::EshutdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EtoomanyrefsExc::EtoomanyrefsExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EtimedoutExc::EtimedoutExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EconnrefusedExc::EconnrefusedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EhostdownExc::EhostdownExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EhostunreachExc::EhostunreachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EalreadyExc::EalreadyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EinprogressExc::EinprogressExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EstaleExc::EstaleExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EucleanExc::EucleanExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotnamExc::EnotnamExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnavailExc::EnavailExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EisnamExc::EisnamExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EremoteioExc::EremoteioExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EcanceledExc::EcanceledExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EdquotExc::EdquotExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnocsiExc::EnocsiExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EdeadlockExc::EdeadlockExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EioresidExc::EioresidExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EinitExc::EinitExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EremdevExc::EremdevExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnolimfileExc::EnolimfileExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EproclimExc::EproclimExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EdisjointExc::EdisjointExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnologinExc::EnologinExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EloginlimExc::EloginlimExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EgrouploopExc::EgrouploopExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnoattachExc::EnoattachExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotsupExc::EnotsupExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnoattrExc::EnoattrExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EdircorruptedExc::EdircorruptedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnfsremoteExc::EnfsremoteExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EcontrollerExc::EcontrollerExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotcontrollerExc::EnotcontrollerExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EenqueuedExc::EenqueuedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotenqueuedExc::EnotenqueuedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EjoinedExc::EjoinedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotjoinedExc::EnotjoinedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnoprocExc::EnoprocExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EmustrunExc::EmustrunExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnotstoppedExc::EnotstoppedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EclockcpuExc::EclockcpuExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EinvalstateExc::EinvalstateExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnoexistExc::EnoexistExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EendofminorExc::EendofminorExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EbufsizeExc::EbufsizeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EemptyExc::EemptyExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EnointrgroupExc::EnointrgroupExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EinvalmodeExc::EinvalmodeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EcantextentExc::EcantextentExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EinvaltimeExc::EinvaltimeExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: Iex_2_2::EdestroyedExc::EdestroyedExc(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
132
0
        name (std::stringstream &text) throw(): base (text) {}  \
Unexecuted instantiation: Iex_2_2::InputExc::InputExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::NullExc::NullExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::IoExc::IoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ArgExc::ArgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::LogicExc::LogicExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::MathExc::MathExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ErrnoExc::ErrnoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::NoImplExc::NoImplExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::TypeExc::TypeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::OverflowExc::OverflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::UnderflowExc::UnderflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::DivzeroExc::DivzeroExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::InexactExc::InexactExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::InvalidFpOpExc::InvalidFpOpExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Imath_2_2::NullVecExc::NullVecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Imath_2_2::InfPointExc::InfPointExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Imath_2_2::NullQuatExc::NullQuatExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Imath_2_2::SingMatrixExc::SingMatrixExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Imath_2_2::ZeroScaleExc::ZeroScaleExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Imath_2_2::IntVecNormalizeExc::IntVecNormalizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EpermExc::EpermExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnoentExc::EnoentExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EsrchExc::EsrchExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EintrExc::EintrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EioExc::EioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnxioExc::EnxioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::E2bigExc::E2bigExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnoexecExc::EnoexecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EbadfExc::EbadfExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EchildExc::EchildExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EagainExc::EagainExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnomemExc::EnomemExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EaccesExc::EaccesExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EfaultExc::EfaultExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotblkExc::EnotblkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EbusyExc::EbusyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EexistExc::EexistExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ExdevExc::ExdevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnodevExc::EnodevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotdirExc::EnotdirExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EisdirExc::EisdirExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EinvalExc::EinvalExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnfileExc::EnfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EmfileExc::EmfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnottyExc::EnottyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EtxtbsyExc::EtxtbsyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EfbigExc::EfbigExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnospcExc::EnospcExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EspipeExc::EspipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ErofsExc::ErofsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EmlinkExc::EmlinkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EpipeExc::EpipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EdomExc::EdomExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ErangeExc::ErangeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnomsgExc::EnomsgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EidrmExc::EidrmExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EchrngExc::EchrngExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::El2nsyncExc::El2nsyncExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::El3hltExc::El3hltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::El3rstExc::El3rstExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ElnrngExc::ElnrngExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EunatchExc::EunatchExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnocsiExc::EnocsiExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::El2hltExc::El2hltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EdeadlkExc::EdeadlkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnolckExc::EnolckExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EbadeExc::EbadeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EbadrExc::EbadrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ExfullExc::ExfullExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnoanoExc::EnoanoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EbadrqcExc::EbadrqcExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EbadsltExc::EbadsltExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EdeadlockExc::EdeadlockExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EbfontExc::EbfontExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnostrExc::EnostrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnodataExc::EnodataExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EtimeExc::EtimeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnosrExc::EnosrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnonetExc::EnonetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnopkgExc::EnopkgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EremoteExc::EremoteExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnolinkExc::EnolinkExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EadvExc::EadvExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EsrmntExc::EsrmntExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EcommExc::EcommExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EprotoExc::EprotoExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EmultihopExc::EmultihopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EbadmsgExc::EbadmsgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnametoolongExc::EnametoolongExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EoverflowExc::EoverflowExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotuniqExc::EnotuniqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EbadfdExc::EbadfdExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EremchgExc::EremchgExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ElibaccExc::ElibaccExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ElibbadExc::ElibbadExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ElibscnExc::ElibscnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ElibmaxExc::ElibmaxExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ElibexecExc::ElibexecExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EilseqExc::EilseqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnosysExc::EnosysExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EloopExc::EloopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::ErestartExc::ErestartExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EstrpipeExc::EstrpipeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotemptyExc::EnotemptyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EusersExc::EusersExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotsockExc::EnotsockExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EdestaddrreqExc::EdestaddrreqExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EmsgsizeExc::EmsgsizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EprototypeExc::EprototypeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnoprotooptExc::EnoprotooptExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EprotonosupportExc::EprotonosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EsocktnosupportExc::EsocktnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EopnotsuppExc::EopnotsuppExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EpfnosupportExc::EpfnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EafnosupportExc::EafnosupportExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EaddrinuseExc::EaddrinuseExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EaddrnotavailExc::EaddrnotavailExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnetdownExc::EnetdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnetunreachExc::EnetunreachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnetresetExc::EnetresetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EconnabortedExc::EconnabortedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EconnresetExc::EconnresetExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnobufsExc::EnobufsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EisconnExc::EisconnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotconnExc::EnotconnExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EshutdownExc::EshutdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EtoomanyrefsExc::EtoomanyrefsExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EtimedoutExc::EtimedoutExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EconnrefusedExc::EconnrefusedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EhostdownExc::EhostdownExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EhostunreachExc::EhostunreachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EalreadyExc::EalreadyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EinprogressExc::EinprogressExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EstaleExc::EstaleExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EioresidExc::EioresidExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EucleanExc::EucleanExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotnamExc::EnotnamExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnavailExc::EnavailExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EisnamExc::EisnamExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EremoteioExc::EremoteioExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EinitExc::EinitExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EremdevExc::EremdevExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EcanceledExc::EcanceledExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnolimfileExc::EnolimfileExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EproclimExc::EproclimExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EdisjointExc::EdisjointExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnologinExc::EnologinExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EloginlimExc::EloginlimExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EgrouploopExc::EgrouploopExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnoattachExc::EnoattachExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotsupExc::EnotsupExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnoattrExc::EnoattrExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EdircorruptedExc::EdircorruptedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EdquotExc::EdquotExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnfsremoteExc::EnfsremoteExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EcontrollerExc::EcontrollerExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotcontrollerExc::EnotcontrollerExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EenqueuedExc::EenqueuedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotenqueuedExc::EnotenqueuedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EjoinedExc::EjoinedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotjoinedExc::EnotjoinedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnoprocExc::EnoprocExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EmustrunExc::EmustrunExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnotstoppedExc::EnotstoppedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EclockcpuExc::EclockcpuExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EinvalstateExc::EinvalstateExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnoexistExc::EnoexistExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EendofminorExc::EendofminorExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EbufsizeExc::EbufsizeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EemptyExc::EemptyExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EnointrgroupExc::EnointrgroupExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EinvalmodeExc::EinvalmodeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EcantextentExc::EcantextentExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EinvaltimeExc::EinvaltimeExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: Iex_2_2::EdestroyedExc::EdestroyedExc(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
133
0
        ~name() throw() { }                                     \
Unexecuted instantiation: Iex_2_2::ArgExc::~ArgExc()
Unexecuted instantiation: Iex_2_2::LogicExc::~LogicExc()
Unexecuted instantiation: Iex_2_2::InputExc::~InputExc()
Unexecuted instantiation: Iex_2_2::IoExc::~IoExc()
Unexecuted instantiation: Iex_2_2::MathExc::~MathExc()
Unexecuted instantiation: Iex_2_2::ErrnoExc::~ErrnoExc()
Unexecuted instantiation: Iex_2_2::NoImplExc::~NoImplExc()
Unexecuted instantiation: Iex_2_2::NullExc::~NullExc()
Unexecuted instantiation: Iex_2_2::TypeExc::~TypeExc()
Unexecuted instantiation: Iex_2_2::OverflowExc::~OverflowExc()
Unexecuted instantiation: Iex_2_2::UnderflowExc::~UnderflowExc()
Unexecuted instantiation: Iex_2_2::DivzeroExc::~DivzeroExc()
Unexecuted instantiation: Iex_2_2::InexactExc::~InexactExc()
Unexecuted instantiation: Iex_2_2::InvalidFpOpExc::~InvalidFpOpExc()
Unexecuted instantiation: Imath_2_2::NullVecExc::~NullVecExc()
Unexecuted instantiation: Imath_2_2::InfPointExc::~InfPointExc()
Unexecuted instantiation: Imath_2_2::NullQuatExc::~NullQuatExc()
Unexecuted instantiation: Imath_2_2::SingMatrixExc::~SingMatrixExc()
Unexecuted instantiation: Imath_2_2::ZeroScaleExc::~ZeroScaleExc()
Unexecuted instantiation: Imath_2_2::IntVecNormalizeExc::~IntVecNormalizeExc()
Unexecuted instantiation: Iex_2_2::EpermExc::~EpermExc()
Unexecuted instantiation: Iex_2_2::EnoentExc::~EnoentExc()
Unexecuted instantiation: Iex_2_2::EsrchExc::~EsrchExc()
Unexecuted instantiation: Iex_2_2::EintrExc::~EintrExc()
Unexecuted instantiation: Iex_2_2::EioExc::~EioExc()
Unexecuted instantiation: Iex_2_2::EnxioExc::~EnxioExc()
Unexecuted instantiation: Iex_2_2::E2bigExc::~E2bigExc()
Unexecuted instantiation: Iex_2_2::EnoexecExc::~EnoexecExc()
Unexecuted instantiation: Iex_2_2::EbadfExc::~EbadfExc()
Unexecuted instantiation: Iex_2_2::EchildExc::~EchildExc()
Unexecuted instantiation: Iex_2_2::EagainExc::~EagainExc()
Unexecuted instantiation: Iex_2_2::EnomemExc::~EnomemExc()
Unexecuted instantiation: Iex_2_2::EaccesExc::~EaccesExc()
Unexecuted instantiation: Iex_2_2::EfaultExc::~EfaultExc()
Unexecuted instantiation: Iex_2_2::EnotblkExc::~EnotblkExc()
Unexecuted instantiation: Iex_2_2::EbusyExc::~EbusyExc()
Unexecuted instantiation: Iex_2_2::EexistExc::~EexistExc()
Unexecuted instantiation: Iex_2_2::ExdevExc::~ExdevExc()
Unexecuted instantiation: Iex_2_2::EnodevExc::~EnodevExc()
Unexecuted instantiation: Iex_2_2::EnotdirExc::~EnotdirExc()
Unexecuted instantiation: Iex_2_2::EisdirExc::~EisdirExc()
Unexecuted instantiation: Iex_2_2::EinvalExc::~EinvalExc()
Unexecuted instantiation: Iex_2_2::EnfileExc::~EnfileExc()
Unexecuted instantiation: Iex_2_2::EmfileExc::~EmfileExc()
Unexecuted instantiation: Iex_2_2::EnottyExc::~EnottyExc()
Unexecuted instantiation: Iex_2_2::EtxtbsyExc::~EtxtbsyExc()
Unexecuted instantiation: Iex_2_2::EfbigExc::~EfbigExc()
Unexecuted instantiation: Iex_2_2::EnospcExc::~EnospcExc()
Unexecuted instantiation: Iex_2_2::EspipeExc::~EspipeExc()
Unexecuted instantiation: Iex_2_2::ErofsExc::~ErofsExc()
Unexecuted instantiation: Iex_2_2::EmlinkExc::~EmlinkExc()
Unexecuted instantiation: Iex_2_2::EpipeExc::~EpipeExc()
Unexecuted instantiation: Iex_2_2::EdomExc::~EdomExc()
Unexecuted instantiation: Iex_2_2::ErangeExc::~ErangeExc()
Unexecuted instantiation: Iex_2_2::EnomsgExc::~EnomsgExc()
Unexecuted instantiation: Iex_2_2::EidrmExc::~EidrmExc()
Unexecuted instantiation: Iex_2_2::EchrngExc::~EchrngExc()
Unexecuted instantiation: Iex_2_2::El2nsyncExc::~El2nsyncExc()
Unexecuted instantiation: Iex_2_2::El3hltExc::~El3hltExc()
Unexecuted instantiation: Iex_2_2::El3rstExc::~El3rstExc()
Unexecuted instantiation: Iex_2_2::ElnrngExc::~ElnrngExc()
Unexecuted instantiation: Iex_2_2::EunatchExc::~EunatchExc()
Unexecuted instantiation: Iex_2_2::EnocsiExc::~EnocsiExc()
Unexecuted instantiation: Iex_2_2::El2hltExc::~El2hltExc()
Unexecuted instantiation: Iex_2_2::EdeadlkExc::~EdeadlkExc()
Unexecuted instantiation: Iex_2_2::EnolckExc::~EnolckExc()
Unexecuted instantiation: Iex_2_2::EbadeExc::~EbadeExc()
Unexecuted instantiation: Iex_2_2::EbadrExc::~EbadrExc()
Unexecuted instantiation: Iex_2_2::ExfullExc::~ExfullExc()
Unexecuted instantiation: Iex_2_2::EnoanoExc::~EnoanoExc()
Unexecuted instantiation: Iex_2_2::EbadrqcExc::~EbadrqcExc()
Unexecuted instantiation: Iex_2_2::EbadsltExc::~EbadsltExc()
Unexecuted instantiation: Iex_2_2::EdeadlockExc::~EdeadlockExc()
Unexecuted instantiation: Iex_2_2::EbfontExc::~EbfontExc()
Unexecuted instantiation: Iex_2_2::EnostrExc::~EnostrExc()
Unexecuted instantiation: Iex_2_2::EnodataExc::~EnodataExc()
Unexecuted instantiation: Iex_2_2::EtimeExc::~EtimeExc()
Unexecuted instantiation: Iex_2_2::EnosrExc::~EnosrExc()
Unexecuted instantiation: Iex_2_2::EnonetExc::~EnonetExc()
Unexecuted instantiation: Iex_2_2::EnopkgExc::~EnopkgExc()
Unexecuted instantiation: Iex_2_2::EremoteExc::~EremoteExc()
Unexecuted instantiation: Iex_2_2::EnolinkExc::~EnolinkExc()
Unexecuted instantiation: Iex_2_2::EadvExc::~EadvExc()
Unexecuted instantiation: Iex_2_2::EsrmntExc::~EsrmntExc()
Unexecuted instantiation: Iex_2_2::EcommExc::~EcommExc()
Unexecuted instantiation: Iex_2_2::EprotoExc::~EprotoExc()
Unexecuted instantiation: Iex_2_2::EmultihopExc::~EmultihopExc()
Unexecuted instantiation: Iex_2_2::EbadmsgExc::~EbadmsgExc()
Unexecuted instantiation: Iex_2_2::EnametoolongExc::~EnametoolongExc()
Unexecuted instantiation: Iex_2_2::EoverflowExc::~EoverflowExc()
Unexecuted instantiation: Iex_2_2::EnotuniqExc::~EnotuniqExc()
Unexecuted instantiation: Iex_2_2::EbadfdExc::~EbadfdExc()
Unexecuted instantiation: Iex_2_2::EremchgExc::~EremchgExc()
Unexecuted instantiation: Iex_2_2::ElibaccExc::~ElibaccExc()
Unexecuted instantiation: Iex_2_2::ElibbadExc::~ElibbadExc()
Unexecuted instantiation: Iex_2_2::ElibscnExc::~ElibscnExc()
Unexecuted instantiation: Iex_2_2::ElibmaxExc::~ElibmaxExc()
Unexecuted instantiation: Iex_2_2::ElibexecExc::~ElibexecExc()
Unexecuted instantiation: Iex_2_2::EilseqExc::~EilseqExc()
Unexecuted instantiation: Iex_2_2::EnosysExc::~EnosysExc()
Unexecuted instantiation: Iex_2_2::EloopExc::~EloopExc()
Unexecuted instantiation: Iex_2_2::ErestartExc::~ErestartExc()
Unexecuted instantiation: Iex_2_2::EstrpipeExc::~EstrpipeExc()
Unexecuted instantiation: Iex_2_2::EnotemptyExc::~EnotemptyExc()
Unexecuted instantiation: Iex_2_2::EusersExc::~EusersExc()
Unexecuted instantiation: Iex_2_2::EnotsockExc::~EnotsockExc()
Unexecuted instantiation: Iex_2_2::EdestaddrreqExc::~EdestaddrreqExc()
Unexecuted instantiation: Iex_2_2::EmsgsizeExc::~EmsgsizeExc()
Unexecuted instantiation: Iex_2_2::EprototypeExc::~EprototypeExc()
Unexecuted instantiation: Iex_2_2::EnoprotooptExc::~EnoprotooptExc()
Unexecuted instantiation: Iex_2_2::EprotonosupportExc::~EprotonosupportExc()
Unexecuted instantiation: Iex_2_2::EsocktnosupportExc::~EsocktnosupportExc()
Unexecuted instantiation: Iex_2_2::EopnotsuppExc::~EopnotsuppExc()
Unexecuted instantiation: Iex_2_2::EpfnosupportExc::~EpfnosupportExc()
Unexecuted instantiation: Iex_2_2::EafnosupportExc::~EafnosupportExc()
Unexecuted instantiation: Iex_2_2::EaddrinuseExc::~EaddrinuseExc()
Unexecuted instantiation: Iex_2_2::EaddrnotavailExc::~EaddrnotavailExc()
Unexecuted instantiation: Iex_2_2::EnetdownExc::~EnetdownExc()
Unexecuted instantiation: Iex_2_2::EnetunreachExc::~EnetunreachExc()
Unexecuted instantiation: Iex_2_2::EnetresetExc::~EnetresetExc()
Unexecuted instantiation: Iex_2_2::EconnabortedExc::~EconnabortedExc()
Unexecuted instantiation: Iex_2_2::EconnresetExc::~EconnresetExc()
Unexecuted instantiation: Iex_2_2::EnobufsExc::~EnobufsExc()
Unexecuted instantiation: Iex_2_2::EisconnExc::~EisconnExc()
Unexecuted instantiation: Iex_2_2::EnotconnExc::~EnotconnExc()
Unexecuted instantiation: Iex_2_2::EshutdownExc::~EshutdownExc()
Unexecuted instantiation: Iex_2_2::EtoomanyrefsExc::~EtoomanyrefsExc()
Unexecuted instantiation: Iex_2_2::EtimedoutExc::~EtimedoutExc()
Unexecuted instantiation: Iex_2_2::EconnrefusedExc::~EconnrefusedExc()
Unexecuted instantiation: Iex_2_2::EhostdownExc::~EhostdownExc()
Unexecuted instantiation: Iex_2_2::EhostunreachExc::~EhostunreachExc()
Unexecuted instantiation: Iex_2_2::EalreadyExc::~EalreadyExc()
Unexecuted instantiation: Iex_2_2::EinprogressExc::~EinprogressExc()
Unexecuted instantiation: Iex_2_2::EstaleExc::~EstaleExc()
Unexecuted instantiation: Iex_2_2::EioresidExc::~EioresidExc()
Unexecuted instantiation: Iex_2_2::EucleanExc::~EucleanExc()
Unexecuted instantiation: Iex_2_2::EnotnamExc::~EnotnamExc()
Unexecuted instantiation: Iex_2_2::EnavailExc::~EnavailExc()
Unexecuted instantiation: Iex_2_2::EisnamExc::~EisnamExc()
Unexecuted instantiation: Iex_2_2::EremoteioExc::~EremoteioExc()
Unexecuted instantiation: Iex_2_2::EinitExc::~EinitExc()
Unexecuted instantiation: Iex_2_2::EremdevExc::~EremdevExc()
Unexecuted instantiation: Iex_2_2::EcanceledExc::~EcanceledExc()
Unexecuted instantiation: Iex_2_2::EnolimfileExc::~EnolimfileExc()
Unexecuted instantiation: Iex_2_2::EproclimExc::~EproclimExc()
Unexecuted instantiation: Iex_2_2::EdisjointExc::~EdisjointExc()
Unexecuted instantiation: Iex_2_2::EnologinExc::~EnologinExc()
Unexecuted instantiation: Iex_2_2::EloginlimExc::~EloginlimExc()
Unexecuted instantiation: Iex_2_2::EgrouploopExc::~EgrouploopExc()
Unexecuted instantiation: Iex_2_2::EnoattachExc::~EnoattachExc()
Unexecuted instantiation: Iex_2_2::EnotsupExc::~EnotsupExc()
Unexecuted instantiation: Iex_2_2::EnoattrExc::~EnoattrExc()
Unexecuted instantiation: Iex_2_2::EdircorruptedExc::~EdircorruptedExc()
Unexecuted instantiation: Iex_2_2::EdquotExc::~EdquotExc()
Unexecuted instantiation: Iex_2_2::EnfsremoteExc::~EnfsremoteExc()
Unexecuted instantiation: Iex_2_2::EcontrollerExc::~EcontrollerExc()
Unexecuted instantiation: Iex_2_2::EnotcontrollerExc::~EnotcontrollerExc()
Unexecuted instantiation: Iex_2_2::EenqueuedExc::~EenqueuedExc()
Unexecuted instantiation: Iex_2_2::EnotenqueuedExc::~EnotenqueuedExc()
Unexecuted instantiation: Iex_2_2::EjoinedExc::~EjoinedExc()
Unexecuted instantiation: Iex_2_2::EnotjoinedExc::~EnotjoinedExc()
Unexecuted instantiation: Iex_2_2::EnoprocExc::~EnoprocExc()
Unexecuted instantiation: Iex_2_2::EmustrunExc::~EmustrunExc()
Unexecuted instantiation: Iex_2_2::EnotstoppedExc::~EnotstoppedExc()
Unexecuted instantiation: Iex_2_2::EclockcpuExc::~EclockcpuExc()
Unexecuted instantiation: Iex_2_2::EinvalstateExc::~EinvalstateExc()
Unexecuted instantiation: Iex_2_2::EnoexistExc::~EnoexistExc()
Unexecuted instantiation: Iex_2_2::EendofminorExc::~EendofminorExc()
Unexecuted instantiation: Iex_2_2::EbufsizeExc::~EbufsizeExc()
Unexecuted instantiation: Iex_2_2::EemptyExc::~EemptyExc()
Unexecuted instantiation: Iex_2_2::EnointrgroupExc::~EnointrgroupExc()
Unexecuted instantiation: Iex_2_2::EinvalmodeExc::~EinvalmodeExc()
Unexecuted instantiation: Iex_2_2::EcantextentExc::~EcantextentExc()
Unexecuted instantiation: Iex_2_2::EinvaltimeExc::~EinvaltimeExc()
Unexecuted instantiation: Iex_2_2::EdestroyedExc::~EdestroyedExc()
134
    };
135
136
// For backward compatibility.
137
#define DEFINE_EXC(name, base) DEFINE_EXC_EXP(, name, base)
138
139
140
//--------------------------------------------------------
141
// Some exceptions which should be useful in most programs
142
//--------------------------------------------------------
143
DEFINE_EXC_EXP (IEX_EXPORT, ArgExc, BaseExc)    // Invalid arguments to a function call
144
145
DEFINE_EXC_EXP (IEX_EXPORT, LogicExc, BaseExc)  // General error in a program's logic,
146
                                                // for example, a function was called
147
                                                // in a context where the call does
148
                                                // not make sense.
149
150
DEFINE_EXC_EXP (IEX_EXPORT, InputExc, BaseExc)  // Invalid input data, e.g. from a file
151
152
DEFINE_EXC_EXP (IEX_EXPORT, IoExc, BaseExc)     // Input or output operation failed
153
154
DEFINE_EXC_EXP (IEX_EXPORT, MathExc, BaseExc)   // Arithmetic exception; more specific
155
                                                // exceptions derived from this class
156
                                                // are defined in ExcMath.h
157
158
DEFINE_EXC_EXP (IEX_EXPORT, ErrnoExc, BaseExc)  // Base class for exceptions corresponding
159
                                                // to errno values (see errno.h); more
160
                                                // specific exceptions derived from this
161
                                                // class are defined in ExcErrno.h
162
163
DEFINE_EXC_EXP (IEX_EXPORT, NoImplExc, BaseExc) // Missing method exception e.g. from a
164
                                                // call to a method that is only partially
165
                                                // or not at all implemented. A reminder
166
                                                // to lazy software people to get back
167
                                                // to work.
168
169
DEFINE_EXC_EXP (IEX_EXPORT, NullExc, BaseExc)   // A pointer is inappropriately null.
170
171
DEFINE_EXC_EXP (IEX_EXPORT, TypeExc, BaseExc)   // An object is an inappropriate type,
172
                                                // i.e. a dynamnic_cast failed.
173
174
175
//----------------------------------------------------------------------
176
// Stack-tracing support:
177
// 
178
// setStackTracer(st)
179
//
180
//  installs a stack-tracing routine, st, which will be called from
181
//  class BaseExc's constructor every time an exception derived from
182
//  BaseExc is thrown.  The stack-tracing routine should return a
183
//  string that contains a printable representation of the program's
184
//  current call stack.  This string will be stored in the BaseExc
185
//  object; the string is accesible via the BaseExc::stackTrace()
186
//  method.
187
//
188
// setStackTracer(0)
189
//
190
//  removes the current stack tracing routine.  When an exception
191
//  derived from BaseExc is thrown, the stack trace string stored
192
//  in the BaseExc object will be empty.
193
//
194
// stackTracer()
195
//
196
//  returns a pointer to the current stack-tracing routine, or 0
197
//  if there is no current stack stack-tracing routine.
198
// 
199
//----------------------------------------------------------------------
200
201
typedef std::string (* StackTracer) ();
202
203
IEX_EXPORT void        setStackTracer (StackTracer stackTracer);
204
IEX_EXPORT StackTracer stackTracer ();
205
206
207
//-----------------
208
// Inline functions
209
//-----------------
210
211
inline BaseExc &
212
BaseExc::operator = (std::stringstream &s)
213
0
{
214
0
    return assign (s);
215
0
}
216
217
218
inline BaseExc &
219
BaseExc::operator += (std::stringstream &s)
220
0
{
221
0
    return append (s);
222
0
}
223
224
225
inline BaseExc &
226
BaseExc::assign (const char *s)
227
0
{
228
0
    std::string::assign(s);
229
0
    return *this;
230
0
}
231
232
233
inline BaseExc &
234
BaseExc::operator = (const char *s)
235
0
{
236
0
    return assign(s);
237
0
}
238
239
240
inline BaseExc &
241
BaseExc::append (const char *s)
242
0
{
243
0
    std::string::append(s);
244
0
    return *this;
245
0
}
246
247
248
inline BaseExc &
249
BaseExc::operator += (const char *s)
250
0
{
251
0
    return append(s);
252
0
}
253
254
255
inline const std::string &
256
BaseExc::stackTrace () const
257
0
{
258
0
    return _stackTrace;
259
0
}
260
261
262
IEX_INTERNAL_NAMESPACE_HEADER_EXIT
263
264
#endif // INCLUDED_IEXBASEEXC_H