org.restexpress.exception.NoRoutesDefinedException Maven / Gradle / Ivy
/*
Copyright 2015, Strategic Gains, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.restexpress.exception;
import io.netty.handler.codec.http.HttpResponseStatus;
/**
* Used to indicate that no routes were defined for the server.
*
* @author tfredrich
* @since Sep 18, 2015
*/
public class NoRoutesDefinedException
extends ServiceException
{
private static final long serialVersionUID = 9020607503913325801L;
public NoRoutesDefinedException()
{
super();
}
public NoRoutesDefinedException(HttpResponseStatus status, String message, Throwable cause)
{
super(status, message, cause);
}
public NoRoutesDefinedException(HttpResponseStatus status, String message)
{
super(status, message);
}
public NoRoutesDefinedException(HttpResponseStatus status, Throwable cause)
{
super(status, cause);
}
public NoRoutesDefinedException(HttpResponseStatus status)
{
super(status);
}
public NoRoutesDefinedException(String message, Throwable cause)
{
super(message, cause);
}
public NoRoutesDefinedException(String message)
{
super(message);
}
public NoRoutesDefinedException(Throwable cause)
{
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy