1 package org.imageconverter.infra.exception;
2
3
4
5
6
7
8 public class ImageConvertServiceException extends BaseApplicationException {
9
10 private static final long serialVersionUID = 1L;
11
12
13
14
15
16
17
18 public ImageConvertServiceException(final String message, final Object... params) {
19 super(message, params);
20 }
21
22
23
24
25
26
27
28
29 public ImageConvertServiceException(final String message, final Throwable cause, final Object... params) {
30 super(message, params, cause);
31 }
32 }