mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
18 lines
305 B
C#
18 lines
305 B
C#
using AssetRipper.IO.Files.Streams.Smart;
|
|
|
|
namespace AssetRipper.IO.Files;
|
|
|
|
public class FailedFile : FileBase
|
|
{
|
|
public string StackTrace { get; set; } = "";
|
|
|
|
public override void Read(SmartStream stream)
|
|
{
|
|
}
|
|
|
|
public override void Write(Stream stream)
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
}
|