1 22 package org.objectweb.petals; 23 24 30 31 public class PetalsException extends Exception { 32 33 36 private static final long serialVersionUID = 1L; 37 38 41 public PetalsException() { 42 super(); 43 } 44 45 48 public PetalsException(String message) { 49 super(message); 50 } 51 52 56 public PetalsException(String message, Throwable cause) { 57 super(message, cause); 58 } 59 60 63 public PetalsException(Throwable cause) { 64 super(cause); 65 } 66 67 } 68 | Popular Tags |