15 lines
220 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|