StateIsOverException.cs 281 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 using System; namespace Pole.Core.Exceptions { public class StateIsOverException : Exception { public StateIsOverException(string id, Type grainType) : base($"State Is Over of Grain type {grainType.FullName} and Id {id}") { } } }