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