User: magrawal
Date: 07/03/06 02:40:16
Added: etc/andromda-dotnet/AndroMDA.ScenarioUnit/AndroMDA.ScenarioUnit
DataProviderException.cs
Log:
added data provider exception.
Revision Changes Path
1.1 plugins/etc/andromda-dotnet/AndroMDA.ScenarioUnit/AndroMDA.ScenarioUnit/DataProviderException.cs
Index: DataProviderException.cs
===================================================================
using System;
namespace AndroMDA.ScenarioUnit
{
public class DataProviderException : Exception
{
public DataProviderException(string message, Exception e)
: base(message, e)
{ }
}
}
|