1 /*******************************************************************************
2 * Copyright (c) 2015 hangum.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser Public License v2.1
5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
9 * hangum - initial API and implementation
10 ******************************************************************************/
11 package com
.hangum
.tadpole
.engine
.restful
;
13 import com
.hangum
.tadpole
.engine
.define
.TDBResultCodeDefine
;
16 * URL Not found exception
21 public class RESTFulNotFoundURLException
extends TadpoleException
{
23 public RESTFulNotFoundURLException(String string
) {
24 super(TDBResultCodeDefine
.NOT_FOUND
, string
);