Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 package org.ros.exception;
00018
00022 public class ServiceException extends Exception {
00023
00024 public ServiceException(final Throwable throwable) {
00025 super(throwable);
00026 }
00027
00028 public ServiceException(final String message, final Throwable throwable) {
00029 super(message, throwable);
00030 }
00031
00032 public ServiceException(final String message) {
00033 super(message);
00034 }
00035 }