diff options
Diffstat (limited to 'src/main/java/com/p4square/grow/frontend/NotFoundException.java')
-rw-r--r-- | src/main/java/com/p4square/grow/frontend/NotFoundException.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/com/p4square/grow/frontend/NotFoundException.java b/src/main/java/com/p4square/grow/frontend/NotFoundException.java new file mode 100644 index 0000000..dfa2a4c --- /dev/null +++ b/src/main/java/com/p4square/grow/frontend/NotFoundException.java @@ -0,0 +1,13 @@ +/* + * Copyright 2014 Jesse Morgan + */ + +package com.p4square.grow.frontend; + +import java.io.IOException; + +public class NotFoundException extends IOException { + public NotFoundException(final String message) { + super(message); + } +} |