diff --git a/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/ARC/ARCDataFormat.cs b/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/ARC/ARCDataFormat.cs index d10a53d6..1d9f0ed8 100644 --- a/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/ARC/ARCDataFormat.cs +++ b/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/ARC/ARCDataFormat.cs @@ -27,7 +27,7 @@ namespace UniversalEditor.DataFormats.FileSystem.ARC IO.Reader br = base.Accessor.Reader; br.Endianness = IO.Endianness.LittleEndian; byte magic = br.ReadByte(); - if (magic != 0x1A) throw new InvalidDataFormatException(); + if (magic != 0x1A) throw new InvalidDataFormatException("File does not begin with 0x1A"); byte compressionMethod = br.ReadByte(); string fileName = br.ReadNullTerminatedString(12);