Newer
Older
using System;
namespace HaaSMiddleware.BusinessLogicTier.Logic {
public class ExternallyVisibleException : ApplicationException {
public ExternallyVisibleException(string message) : base(message) {}
public ExternallyVisibleException(string message, Exception innerException) : base(message, innerException) {}
}
}