using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Everest.CmsServices.Exceptions{
public class UpgradeException : Exception
{
public UpgradeException(string message)
: base(message)
{
}
public UpgradeException(string message, Exception innerException)
: base(message, innerException)
{
}
}
}
|