1 19 package com.lutris.airsent.business; 20 21 import com.lutris.airsent.spec.AirSentException; 23 26 public class AirSentBusinessException 27 extends AirSentException { 28 29 33 public AirSentBusinessException(String msg, Throwable ex) { 34 super(msg, ex); 35 } 36 37 40 public AirSentBusinessException(String msg) { 41 super(msg); 42 } 43 44 48 public AirSentBusinessException(Throwable ex) { 49 super(ex); 50 } 51 } 52 53 | Popular Tags |