IF.Lastfm/IF.Lastfm.Core/Api/Helpers/LastFmApiException.cs

15 lines
304 B
C#
Raw Normal View History

using System;
using IF.Lastfm.Core.Api.Enums;
namespace IF.Lastfm.Core.Api.Helpers
{
public class LastFmApiException : Exception
{
public LastFmApiError Error { get; set; }
public LastFmApiException(LastFmApiError error)
{
Error = error;
}
}
}