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