4 lines
276 B
C#
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}"); |