View Javadoc
1   package net.avcompris.commons3.dao.exception;
2   
3   import javax.annotation.Nullable;
4   
5   public final class EntityNotFoundException extends Exception {
6   
7   	private static final long serialVersionUID = -7715140428919594334L;
8   
9   	public EntityNotFoundException(@Nullable final String message) {
10  
11  		super(message);
12  	}
13  
14  	public EntityNotFoundException(@Nullable final String message, @Nullable final Throwable cause) {
15  
16  		super(message, cause);
17  	}
18  }