001package org.andromda.utils.beans; 002 003/** 004 * Thrown when an unexpected exception occurs during sorting. 005 * 006 * @author Chad Brandon 007 */ 008public class SortException 009 extends RuntimeException 010{ 011 private static final long serialVersionUID = 34L; 012 013 /** 014 * @param throwable 015 */ 016 public SortException(final Throwable throwable) 017 { 018 super(throwable); 019 } 020 021 /** 022 * @param message 023 */ 024 public SortException(final String message) 025 { 026 super(message); 027 } 028 029 /** 030 * @param message 031 * @param throwable 032 */ 033 public SortException( 034 final String message, 035 final Throwable throwable) 036 { 037 super(message, throwable); 038 } 039}