1 19 20 package com.lutris.airsent.spec; 21 22 import com.lutris.util.ChainedException; 23 24 27 public class AirSentException 28 extends ChainedException { 29 30 34 public AirSentException(String msg, Throwable ex) { 35 super(msg, ex); 36 } 37 38 public AirSentException(String msg) { 39 super(msg); 40 } 41 42 public AirSentException(Throwable ex) { 43 super(ex); 44 } 45 } 46 47 48 | Popular Tags |