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