1 23 24 package org.continuent.sequoia.common.exceptions; 25 26 32 public class DataCollectorException extends SequoiaException 33 { 34 private static final long serialVersionUID = 1772813821485897067L; 35 36 39 public DataCollectorException() 40 { 41 } 42 43 48 public DataCollectorException(String message) 49 { 50 super(message); 51 } 52 53 58 public DataCollectorException(Throwable cause) 59 { 60 super(cause.getMessage()); 61 } 62 63 69 public DataCollectorException(String message, Throwable cause) 70 { 71 super(message, cause); 72 } 73 } | Popular Tags |