1 5 package org.exoplatform.services.communication.sms.util; 6 7 12 public class SortException extends RuntimeException { 13 14 public SortException() { 15 } 16 17 public SortException(String message) { 18 super(message); 19 } 20 21 public SortException(String message, Throwable cause) { 22 super(message, cause); 23 } 24 25 public SortException(Throwable cause) { 26 super(cause); 27 } 28 } | Popular Tags |