1 /* 2 (C) Copyright IBM Corp. 2005, 2009 3 4 THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE 5 ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE 6 CONSTITUTES RECIPIENTS ACCEPTANCE OF THE AGREEMENT. 7 8 You can obtain a current copy of the Eclipse Public License from 9 http://www.opensource.org/licenses/eclipse-1.0.php 10 11 @author : Roberto Pineiro, IBM, roberto.pineiro@us.ibm.com 12 * @author : Chung-hao Tan, IBM, chungtan@us.ibm.com 13 * 14 * 15 * Change History 16 * Flag Date Prog Description 17 *------------------------------------------------------------------------------- 18 * 1535756 2006-08-07 lupusalex Make code warning free 19 * 1565892 2006-11-28 lupusalex Make SBLIM client JSR48 compliant 20 * 2003590 2008-06-30 blaschke-oss Change licensing from CPL to EPL 21 * 2524131 2009-01-21 raman_arora Upgrade client to JDK 1.5 (Phase 1) 22 */ 23 24 package org.sentrysoftware.wbem.sblim.cimclient.internal.http; 25 26 /*- 27 * ╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲ 28 * WBEM Java Client 29 * ჻჻჻჻჻჻ 30 * Copyright (C) 2023 Sentry Software 31 * ჻჻჻჻჻჻ 32 * This program is free software: you can redistribute it and/or modify 33 * it under the terms of the GNU Lesser General Public License as 34 * published by the Free Software Foundation, either version 3 of the 35 * License, or (at your option) any later version. 36 * 37 * This program is distributed in the hope that it will be useful, 38 * but WITHOUT ANY WARRANTY; without even the implied warranty of 39 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 40 * GNU General Lesser Public License for more details. 41 * 42 * You should have received a copy of the GNU General Lesser Public 43 * License along with this program. If not, see 44 * <http://www.gnu.org/licenses/lgpl-3.0.html>. 45 * ╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱ 46 */ 47 48 /** 49 * Class HttpParseException represents problems parsing http challenges 50 * 51 */ 52 public class HttpParseException extends HttpException { 53 54 private static final long serialVersionUID = -6546559439537187479L; 55 56 /** 57 * Ctor. 58 */ 59 public HttpParseException() { 60 super(); 61 } 62 63 /** 64 * Ctor. 65 * 66 * @param pReason 67 * The reason 68 */ 69 public HttpParseException(String pReason) { 70 super(pReason); 71 } 72 }