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