mirror of
https://github.com/ezhevita/YandexKeyExtractor
synced 2025-08-16 19:40:48 +07:00
11 lines
178 B
C#
11 lines
178 B
C#
using System;
|
|
|
|
namespace YandexKeyExtractor.Exceptions;
|
|
|
|
public class InvalidTrackIdException : Exception
|
|
{
|
|
public InvalidTrackIdException() : base("Invalid track ID.")
|
|
{
|
|
}
|
|
}
|