package com.redhat.ceylon.model.cmr; /** * Wrap any exception into this runtime exception. * * @author <a href="mailto:ales.justin@jboss.org">Ales Justin</a> */ @SuppressWarnings("serial") public class RepositoryException extends RuntimeException { public RepositoryException(String message) { super(message); } public RepositoryException(String message, Throwable cause) { super(message, cause); } public RepositoryException(Throwable cause) { super(cause); } }