Code
·
24 lines
·
416 bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24using System;
namespace NEbml.Core
{
/// <summary>
/// Thrown to indicate the EBML data format violation.
/// </summary>
public class EbmlDataFormatException : System.IO.IOException
{
public EbmlDataFormatException()
{
}
public EbmlDataFormatException(string message)
: base(message)
{
}
public EbmlDataFormatException(string message, Exception cause)
: base(message, cause)
{
}
}
}