Files
WaifuCellar/Parts/PartNotAttachableException.cs
Samuele Lorefice 3380ad963c Added Human parts
2024-12-31 04:34:04 +01:00

4 lines
276 B
C#

namespace WaifuCellar.Parts;
public class PartNotAttachableException(Part errorPart, Type destPart, string message = "") : Exception(
$"Part {System.Reflection.Assembly.GetAssembly(errorPart.GetType())?.GetName().Name} cannot be attached to {destPart.Name}.\n{message}");