Coverage Report

Created: 2023-09-25 06:10

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