help with - error: no matching function for call...

Eljay Love-Jensen eljay@adobe.com
Wed Jun 2 18:30:00 GMT 2004


You need a copy constructor for outerException.  This should fix your bug...

class outerException
{
public:
     outerException(Base* oParent, innerException& oInner);
     outerException(outerException const& oSource);
     ~outerException();
};

HTH,
--Eljay



More information about the Gcc-help mailing list