Sha256: b4d6114f64e81c6e16e7d802cc7ac4a14c33d0c6f2f05c29d4505425189180c8

Contents?: true

Size: 786 Bytes

Versions: 23

Compression:

Stored size: 786 Bytes

Contents

using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace rho.db
{
    public class DBException : Exception
    {
        private int m_errorCode;
        public int ErrorCode
        {
            get { return m_errorCode; }
            set { m_errorCode = value; }
        }

        public DBException(Exception exc)
            : base("Message: " + exc.Message)
        {
            m_errorCode = 0;
	    }

        public DBException(int errorCode, string message)
            : base(message)
        {
            m_errorCode = errorCode;
        }
    }
}

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
rhodes-3.0.2 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.2.beta.1 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.1 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.1.beta.8 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.1.beta.7 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.1.beta.6 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.1.beta.5 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.1.beta.4 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.1.beta.3 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.1.beta.2 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.0 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.0.beta.7 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.0.beta.6 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.0.beta.5 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.0.beta.4 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.0.beta.3 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.0.beta.2 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-3.0.0.beta.1 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-2.4.1 platform/wp7/RhoRubyLib/db/DBException.cs
rhodes-2.4.1.beta.1 platform/wp7/RhoRubyLib/db/DBException.cs