001package com.hfg.webapp.filter.auth; 002 003//------------------------------------------------------------------------------ 004/** 005 Indicates an invalid domain on the Google Plus account used. 006 @author J. Alex Taylor, hairyfatguy.com 007 */ 008//------------------------------------------------------------------------------ 009// com.hfg XML/HTML Coding Library 010// 011// This library is free software; you can redistribute it and/or 012// modify it under the terms of the GNU Lesser General Public 013// License as published by the Free Software Foundation; either 014// version 2.1 of the License, or (at your option) any later version. 015// 016// This library is distributed in the hope that it will be useful, 017// but WITHOUT ANY WARRANTY; without even the implied warranty of 018// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 019// Lesser General Public License for more details. 020// 021// You should have received a copy of the GNU Lesser General Public 022// License along with this library; if not, write to the Free Software 023// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 024// 025// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com 026// jataylor@hairyfatguy.com 027//------------------------------------------------------------------------------ 028 029public class InvalidDomainException extends RuntimeException 030{ 031 //--------------------------------------------------------------------------- 032 public InvalidDomainException() 033 { 034 super(); 035 } 036 037 //--------------------------------------------------------------------------- 038 public InvalidDomainException(String inMessage) 039 { 040 super(inMessage); 041 } 042 043 //--------------------------------------------------------------------------- 044 public InvalidDomainException(String inMessage, Throwable inException) 045 { 046 super(inMessage, inException); 047 } 048 049 //--------------------------------------------------------------------------- 050 public InvalidDomainException(Throwable inException) 051 { 052 super(inException); 053 } 054 055}