3ca7b9a32aaa26b09bae9a5215cce13cac453a24
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / InternalServerErrorException.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.neutron.northbound.api;
10
11 import javax.ws.rs.WebApplicationException;
12 import javax.ws.rs.core.MediaType;
13 import javax.ws.rs.core.Response;
14
15 /**
16  * Status Code 500 (Internal Server Error)
17  *
18  * <p>
19  * The server encountered an unexpected condition which prevented
20  * it from fulfilling the request.
21  *
22  *
23  *
24  */
25 public class InternalServerErrorException extends WebApplicationException {
26     private static final long serialVersionUID = 1L;
27
28     /**
29      * Constructor for the INTERNAL_SERVER_ERROR custom handler.
30      *
31      * @param string Error message to specify further the
32      *            INTERNAL_SERVER_ERROR response
33      *
34      */
35     public InternalServerErrorException(String string) {
36         super(Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(string).type(MediaType.TEXT_PLAIN).build());
37     }
38 }