Exception cleanup. Code cleanup.

This commit is contained in:
2022-12-23 15:20:16 +08:00
parent ff5928b556
commit 356f4df9a9
13 changed files with 51 additions and 77 deletions

View File

@@ -205,7 +205,7 @@ namespace Cryville.Crtr.Event {
public void AttachHandler(ContainerHandler h) {
if (Handler != null)
throw new InvalidOperationException();
throw new InvalidOperationException("Handler attached twice");
Handler = h;
h.cs = this;
}