1 21 22 27 28 package com.sun.mail.iap; 29 30 33 34 public class ParsingException extends ProtocolException { 35 36 private static final long serialVersionUID = 7756119840142724839L; 37 38 41 public ParsingException() { 42 super(); 43 } 44 45 49 public ParsingException(String s) { 50 super(s); 51 } 52 53 57 public ParsingException(Response r) { 58 super(r); 59 } 60 } 61 | Popular Tags |