Initial checkin

This commit is contained in:
Paul Philion
2012-05-04 17:44:49 -07:00
parent b782e3eb21
commit fe31169282
107 changed files with 7759 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/**
* This file is Copyright © 2008 Software Craftsmen Limited. All Rights Reserved.
*/
package com.softwarecraftsmen;
import org.jetbrains.annotations.NotNull;
public class CanNeverHappenException extends RuntimeException
{
public CanNeverHappenException(final @NotNull Exception cause)
{
super(cause);
}
public CanNeverHappenException()
{}
}