// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
namespace UltimateXR.Exceptions
{
///
/// Unity Web Request Net exception.
///
public sealed class NetUwrException : UwrException
{
#region Constructors & Finalizer
///
/// Constructor.
///
/// Error message
public NetUwrException(string message) : base(message)
{
}
#endregion
}
}