// // Copyright (C) 2004-2008 by Autodesk, Inc. // // This library is free software; you can redistribute it and/or // modify it under the terms of version 2.1 of the GNU Lesser // General Public License as published by the Free Software Foundation. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // using System; /// /// ManagedException is the exception class from which the root of unmanaged exception derive /// This class, deriving from .NET Exception, allows to use the most common properties of /// the Exception class on exceptions wrapping unmanaged MgException classes. The implementation /// of these properties relies on the equivalent MgException methods. /// /// Although this class does not wrap any unmanaged class, it still holds a C++ pointer to /// the MgException that derives from it. /// namespace OSGeo.MapGuide { public class ManagedException : Exception { public ManagedException() { } public override string Message { get { return ((MgException)this).GetMessage(); } } public override string StackTrace { get { return ((MgException)this).GetStackTrace(); } } public virtual void Dispose() { //implemented by derived classes } } }