// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- using System; namespace UltimateXR.Exceptions { /// /// Base class for Unity Web Request exceptions. /// public abstract class UwrException : Exception { #region Constructors & Finalizer /// /// Constructor. /// /// Exception message protected UwrException(string message) : base(message) { } #endregion } }