// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; namespace FlaxEditor.States { /// /// Operation cannot be performed in the current editor state. /// /// [HideInEditor] public class InvalidStateException : Exception { /// /// Initializes a new instance of the class. /// /// The message. public InvalidStateException(string msg) : base(msg) { } } }