MissingMetaObjectException: Add default serialVersionUID

Change-Id: If95ed147af9b6fd44afe415d7a615eabaa36ab29
This commit is contained in:
David Ostrovsky
2021-03-27 19:59:34 +01:00
committed by David Ostrovsky
parent cc1ec4550c
commit f9ae73a505

View File

@@ -16,6 +16,8 @@ package com.google.gerrit.server.notedb;
/** Separate exception type to throw if requested meta SHA1 is not available. */
public class MissingMetaObjectException extends RuntimeException {
private static final long serialVersionUID = 1L;
MissingMetaObjectException(String msg) {
super(msg);
}