1
0

Add requires, exclusive and recommended fragments interpreted by the builder

This commit is contained in:
nicolas.dorier
2019-11-06 23:13:09 +09:00
parent 12a59afa07
commit 9d4bbcb0f3
18 changed files with 217 additions and 34 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace DockerGenerator
{
public class YamlBuildException : Exception
{
public YamlBuildException(string message): base(message)
{
}
}
}