mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 13:15:31 +00:00
17 lines
661 B
C#
17 lines
661 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenTK.Audio
|
|||
|
{
|
|||
|
/// <summary>Represents exceptions related to OpenTK.Audio.SoundReader objects.</summary>
|
|||
|
public class SoundReaderException : AudioException
|
|||
|
{
|
|||
|
/// <summary>Constructs a new SoundReaderException.</summary>
|
|||
|
public SoundReaderException() : base() { }
|
|||
|
/// <summary>Constructs a new SoundReaderException with the specified error message.</summary>
|
|||
|
/// <param name="message">The error message of the SoundReaderException.</param>
|
|||
|
public SoundReaderException(string message) : base(message) { }
|
|||
|
}
|
|||
|
}
|