/* * Copyright (c) 2014 Globo.com - ATeam * All rights reserved. * * This source is subject to the Apache License, Version 2.0. * Please see the LICENSE file for more information. * * Authors: See AUTHORS file * * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A * PARTICULAR PURPOSE. */ package com.globo.galeb.exceptions; import com.globo.galeb.rulereturn.HttpCode; public class ServiceUnavailableException extends AbstractHttpException { private static final long serialVersionUID = 4297206544278009366L; public ServiceUnavailableException() { super(HttpCode.SERVICE_UNAVAILABLE); } }