1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.plugin
.util
;
12 import java
.io
.IOException
;
15 * This is thrown when there is a HTTP protocol error.
19 public class SimpleHTTPProtocolException
23 * Initializes the exception.
25 * @param __m The message.
28 public SimpleHTTPProtocolException(String __m
)
34 * Initializes the exception.
36 * @param __m The message.
37 * @param __c The cause.
40 public SimpleHTTPProtocolException(String __m
, Throwable __c
)