using System; namespace NEbml.Core { /// /// Thrown to indicate the EBML data format violation. /// public class EbmlDataFormatException : System.IO.IOException { public EbmlDataFormatException() { } public EbmlDataFormatException(string message) : base(message) { } public EbmlDataFormatException(string message, Exception cause) : base(message, cause) { } } }