1 22 package org.objectweb.petals.util; 23 24 29 public class PetalsRuntimeException extends RuntimeException { 30 31 34 private static final long serialVersionUID = 1L; 35 36 public PetalsRuntimeException() { 37 super(); 38 } 39 40 public PetalsRuntimeException(String message, Throwable cause) { 41 super(message, cause); 42 } 43 44 public PetalsRuntimeException(String message) { 45 super(message); 46 } 47 48 public PetalsRuntimeException(Throwable cause) { 49 super(cause); 50 } 51 52 } 53 | Popular Tags |