Something went wrong on our end
-
Vaclav Svaton authoredVaclav Svaton authored
ExternallyVisibleException.cs 323 B
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) {}
}
}