001package apps.util.issuereporter; 002 003/** 004 * Exception that indicates an HTTP 414 error was received attempting to submit 005 * issue. 006 * 007 * @author Randall Wood Copyright 2020 008 */ 009public class IssueReport414Exception extends Exception { 010 011 public IssueReport414Exception() { 012 // nothing to do 013 } 014 015}