1 package com.sri.common.controller; 2 3 /*** 4 * Exception thrown when we are unable to locate the given service specified 5 * in the service locator 6 * 7 * @author Michael Rimov 8 * @version 1.0 9 */ 10 public class NoSuchServiceException extends RuntimeException { 11 /*** 12 * 13 */ 14 private static final long serialVersionUID = 1L; 15 16 public NoSuchServiceException() { 17 super(); 18 } 19 20 public NoSuchServiceException(String message) { 21 super(message); 22 } 23 24 public NoSuchServiceException(Throwable cause) { 25 super(cause); 26 } 27 28 public NoSuchServiceException(String message, Throwable cause) { 29 super(message, cause); 30 } 31 }