File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
json-core/src/main/java/io/avaje/json Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2020 */
2121public class JsonDataException extends JsonException {
2222
23- static final long serialVersionUID = 1L ;
23+ private static final long serialVersionUID = 1L ;
2424
2525 public JsonDataException (String message ) {
2626 super (message );
Original file line number Diff line number Diff line change 77 */
88public class JsonEofException extends JsonIoException {
99
10- static final long serialVersionUID = 1L ;
10+ private static final long serialVersionUID = 1L ;
1111
1212 public JsonEofException (IOException cause ) {
1313 super (cause );
Original file line number Diff line number Diff line change 2121 */
2222public class JsonException extends RuntimeException {
2323
24- static final long serialVersionUID = 1L ;
24+ private static final long serialVersionUID = 1L ;
2525
2626 public JsonException (String message ) {
2727 super (message );
Original file line number Diff line number Diff line change 2222 */
2323public class JsonIoException extends JsonException {
2424
25- static final long serialVersionUID = 1L ;
25+ private static final long serialVersionUID = 1L ;
2626
2727 public JsonIoException (IOException cause ) {
2828 super (cause );
You can’t perform that action at this time.
0 commit comments