1 package org.kite9.framework.common;
2
3 public class DiffException extends Exception {
4
5 public DiffException(String message) {
6 super(message);
7 }
8
9 private static final long serialVersionUID = -518859289261388841L;
10
11 }