Skip to content
Snippets Groups Projects
Commit ac7e28ed authored by Piotr Gawron's avatar Piotr Gawron
Browse files

serialVersionUID added

parent ab716be1
No related branches found
No related tags found
1 merge request!35Resolve "Search by coordinates in complex"
......@@ -2,6 +2,11 @@ package lcsb.mapviewer.services;
public class AuthenticationTokenExpireException extends SecurityException {
/**
*
*/
private static final long serialVersionUID = 1L;
public AuthenticationTokenExpireException(String message) {
super(message);
}
......
......@@ -2,6 +2,11 @@ package lcsb.mapviewer.services;
public class InvalidTokenException extends SecurityException {
/**
*
*/
private static final long serialVersionUID = 1L;
public InvalidTokenException(String message) {
super(message);
}
......
......@@ -2,6 +2,11 @@ package lcsb.mapviewer.services;
public class SecurityException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public SecurityException(String message) {
super(message);
}
......
......@@ -2,6 +2,11 @@ package lcsb.mapviewer.services;
public class UserAccessException extends SecurityException {
/**
*
*/
private static final long serialVersionUID = 1L;
public UserAccessException(String message) {
super(message);
}
......
......@@ -16,7 +16,6 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.annotation.Rollback;
import lcsb.mapviewer.annotation.services.PubmedParser;
import lcsb.mapviewer.common.Configuration;
import lcsb.mapviewer.common.Pair;
import lcsb.mapviewer.common.exception.InvalidArgumentException;
import lcsb.mapviewer.converter.graphics.MapGenerator;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment