mirror of
https://github.com/muskit/H3VR-TNH-Quality-of-Life-Improvements.git
synced 2026-06-03 04:34:26 -07:00
15 lines
323 B
C#
15 lines
323 B
C#
using System;
|
|
|
|
namespace MeatKit
|
|
{
|
|
public class MeatKitBuildException : Exception
|
|
{
|
|
public MeatKitBuildException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public MeatKitBuildException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
} |