blob: ea01ddaf79aafe164b019dd13aa834ad7716b956 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 23.04.2012 Aaron Digulla.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Aaron Digulla - initial API and implementation and/or initial documentation
*******************************************************************************/
package m4e.p2
class P2Exception extends RuntimeException {
P2Exception( String message ) {
super( message )
}
P2Exception( String message, Throwable cause ) {
super( message, cause )
}
}