namespace adas_core.Application.Exceptions; /// /// Represents an exception that is thrown when a token-related error occurs. /// /// The message that describes the error. /// public class TokenException(string message) : Exception(message);