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