001package net.bramp.ffmpeg.probe;
002
003import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
004
005@SuppressFBWarnings(
006    value = {"UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD"},
007    justification = "POJO objects where the fields are populated by gson")
008public class FFmpegError {
009  public int code;
010  public String string;
011}