001package org.andromda.utils.beans.comparators; 002 003/** 004 * An exception thrown during execution of a comparator. 005 */ 006public class ComparatorException 007 extends RuntimeException 008{ 009 private static final long serialVersionUID = 34L; 010 011 /** 012 * @param throwable 013 */ 014 public ComparatorException(final Throwable throwable) 015 { 016 super(throwable); 017 } 018 019 /** 020 * @param msg 021 */ 022 public ComparatorException(String msg) 023 { 024 super(msg); 025 } 026 027 /** 028 * @param message 029 * @param throwable 030 */ 031 public ComparatorException( 032 final String message, 033 final Throwable throwable) 034 { 035 super(message, throwable); 036 } 037}