1 2 24 25 26 27 28 29 package com.lutris.util; 30 31 38 public class PersistentStoreException extends ChainedException { 39 40 45 public PersistentStoreException(String msg) { 46 super(msg); 47 } 48 49 56 public PersistentStoreException(String msg, Throwable cause) { 57 super(msg, cause); 58 } 59 60 66 public PersistentStoreException(Throwable cause) { 67 super(cause); 68 } 69 } 70 71 72 73 74 | Popular Tags |