package com.crawler.exception; public class CacheException extends CrawlerException { private String filePath; public CacheException(String message) { super(message); } public CacheException(String message, Throwable cause) { super(message, cause); } public CacheException(String message, String filePath) { super(message); this.filePath = filePath; } public CacheException(String message, String filePath, Throwable cause) { super(message, cause); this.filePath = filePath; } public String getFilePath() { return filePath; } }