1
0
Files
btcpayserver-docker/docker-compose-generator/src/YamlBuildException.cs

15 lines
220 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace DockerGenerator
{
public class YamlBuildException : Exception
{
public YamlBuildException(string message): base(message)
{
}
}
}