ofbapi/OFBButte.Application/Exceptions/ValidationException.cs

15 lines
264 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OFBButte.Application.Exceptions
{
public class ValidationException: Exception
{
public ValidationException(string message): base(message)
{
}
}
}