blob: 76ff9ebd0e8306a6637fabc9538a96135d658694 [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you 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.apache.juneau.utils;
import java.net.*;
import java.text.*;
import org.apache.juneau.*;
/**
* Generic exception thrown from the {@link PojoRest} class.
*
* <p>
* Typically, this is a user-error, such as trying to address a non-existent node in the tree.
*
* <p>
* The status code is an HTTP-equivalent code. It will be one of the following:
* <ul class='spaced-list'>
* <li>
* {@link HttpURLConnection#HTTP_BAD_REQUEST HTTP_BAD_REQUEST}
* - Attempting to do something impossible.
* <li>
* {@link HttpURLConnection#HTTP_NOT_FOUND HTTP_NOT_FOUND}
* - Attempting to access a non-existent node in the tree.
* <li>
* {@link HttpURLConnection#HTTP_FORBIDDEN HTTP_FORBIDDEN}
* - Attempting to overwrite the root object.
* </ul>
*/
public final class PojoRestException extends FormattedRuntimeException {
private static final long serialVersionUID = 1L;
private int status;
/**
* Constructor.
*
* @param cause The cause of this exception.
* @param status HTTP status code.
* @param message The {@link MessageFormat}-style message.
* @param args Optional {@link MessageFormat}-style arguments.
*/
public PojoRestException(Throwable cause, int status, String message, Object... args) {
super(cause, getMessage(cause, message, null), args);
this.status = status;
}
/**
* Constructor.
*
* @param status The HTTP-equivalent status code.
* @param message The detailed message.
* @param args Optional {@link MessageFormat}-style arguments.
*/
public PojoRestException(int status, String message, Object...args) {
this(null, status, message, args);
}
/**
* The HTTP-equivalent status code.
*
* <p>
* See above for details.
*
* @return The HTTP-equivalent status code.
*/
public int getStatus() {
return status;
}
}