1 17 package org.columba.ristretto.imap; 18 19 25 public class CommmandTooLongException extends IMAPException { 26 27 30 private static final long serialVersionUID = 1L; 31 IMAPCommand command; 32 33 38 public CommmandTooLongException(IMAPCommand command) { 39 super(); 40 this.command = command; 41 } 42 47 public CommmandTooLongException() { 48 super(); 49 } 50 51 57 public CommmandTooLongException(String arg0, Throwable arg1) { 58 super(arg0, arg1); 59 } 60 61 66 public CommmandTooLongException(String s) { 67 super(s); 68 } 69 70 75 public CommmandTooLongException(IMAPResponse response) { 76 super(response); 77 } 78 79 84 public CommmandTooLongException(Throwable cause) { 85 super(cause); 86 } 87 88 93 public IMAPCommand getCommand() { 94 return command; 95 } 96 } 97 | Popular Tags |