1 package com.ontotext.ordi.wsmo4rdf.remote.exception;
2
3 /**
4 * Indicates that a service cannot create instances of the requested type
5 *
6 * @author mihail.konstantinov@ontotext.com
7 *
8 */
9 public class ServiceLimitExceededException extends OrdiRemoteException {
10
11 private static final long serialVersionUID = 1L;
12
13 public ServiceLimitExceededException() {
14 super();
15 }
16
17 public ServiceLimitExceededException(String message) {
18 super(message);
19 }
20
21 public ServiceLimitExceededException(String message, Throwable cause) {
22 super(message, cause);
23 }
24
25 public ServiceLimitExceededException(Throwable cause) {
26 super(cause);
27 }
28 }