Remove clashing error prefix; Use better name for RatufaCoat ROMs.
[SquirrelJME.git] / buildSrc / src / main / java / cc / squirreljme / plugin / util / SimpleHTTPProtocolException.java
blob48a2a7a43a0b7880edd1bdaeb073d465b49b5a9c
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
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;
14 /**
15 * This is thrown when there is a HTTP protocol error.
17 * @since 2020/06/27
19 public class SimpleHTTPProtocolException
20 extends IOException
22 /**
23 * Initializes the exception.
25 * @param __m The message.
26 * @since 2020/06/27
28 public SimpleHTTPProtocolException(String __m)
30 super(__m);
33 /**
34 * Initializes the exception.
36 * @param __m The message.
37 * @param __c The cause.
38 * @since 2020/06/27
40 public SimpleHTTPProtocolException(String __m, Throwable __c)
42 super(__m, __c);