Open Kilda Java Documentation
NoDataFoundException.java
Go to the documentation of this file.
1 package org.openkilda.exception;
2 
6 public class NoDataFoundException extends RuntimeException {
7 
9  private static final long serialVersionUID = -6680840187838156716L;
10 
16  public NoDataFoundException(final String message) {
17  super(message);
18 
19  }
20 
21 }