using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CzokoŚmieciarka.DataModels.Exceptions { public class OutOfGridException : Exception { public OutOfGridException() { } public OutOfGridException(string message) : base(message) { } public OutOfGridException(string message, Exception inner) : base(message, inner) { } } }