Initial commit

This commit is contained in:
msk
2022-01-22 20:13:49 -08:00
parent f9d23e5bcf
commit 687473573d
878 changed files with 70957 additions and 0 deletions
@@ -0,0 +1,12 @@
using System;
namespace MeatKit
{
public class MeatKitBuildException : Exception
{
public MeatKitBuildException(string message, Exception innerException) : base(message, innerException)
{
}
}
}