Skip to content

Commit

Permalink
Fix #233 - Serializable classes should have a serialVersionUID
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Apr 5, 2018
1 parent 15b6f5c commit 62ce372
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2012, 2017 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2018 Oracle and/or its affiliates and others.
* All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand All @@ -24,6 +25,8 @@
*/
public class DeploymentException extends Exception {

private static final long serialVersionUID = 7576860738144220015L;

/**
* Creates a deployment exception with the given reason for the deployment
* failure.
Expand Down

0 comments on commit 62ce372

Please sign in to comment.