001
002package io.vrap.rmf.base.client.utils;
003
004import io.vrap.rmf.base.client.ApiHttpResponse;
005import io.vrap.rmf.base.client.error.BaseException;
006
007public class FileException extends BaseException {
008    private static final long serialVersionUID = 0L;
009
010    public FileException(final Throwable cause) {
011        super(cause);
012    }
013
014    public FileException(final String message, final Throwable cause) {
015        super(message, cause);
016    }
017
018    public <T> FileException(final ApiHttpResponse<T> httpResponse) {
019        super(httpResponse.toString());
020    }
021}