1 36 package org.columba.ristretto.pop3; 37 38 44 public class CommandNotSupportedException extends POP3Exception { 45 46 49 private static final long serialVersionUID = 1L; 50 51 56 public CommandNotSupportedException(POP3Response response) { 57 super(response); 58 } 59 60 65 public CommandNotSupportedException(String message) { 66 super(message); 67 } 68 69 74 public CommandNotSupportedException(Throwable cause) { 75 super(cause); 76 } 77 78 84 public CommandNotSupportedException(String message, Throwable cause) { 85 super(message, cause); 86 } 87 88 } 89 | Popular Tags |