File tree 2 files changed +6
-2
lines changed
src/main/java/net/bramp/ffmpeg
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 7
7
public class FFmpegException extends IOException {
8
8
9
9
private static final long serialVersionUID = 3048288225568984942L ;
10
- private FFmpegError error ;
10
+ private final FFmpegError error ;
11
11
12
12
public FFmpegException (String message , FFmpegError error ) {
13
13
super (message );
Original file line number Diff line number Diff line change 2
2
3
3
import edu .umd .cs .findbugs .annotations .SuppressFBWarnings ;
4
4
5
+ import java .io .Serializable ;
6
+
5
7
@ SuppressFBWarnings (
6
8
value = {"UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD" },
7
9
justification = "POJO objects where the fields are populated by gson" )
8
- public class FFmpegError {
10
+ public class FFmpegError implements Serializable {
11
+ private static final long serialVersionUID = 1L ;
12
+
9
13
public int code ;
10
14
public String string ;
11
15
You can’t perform that action at this time.
0 commit comments