jayblanc

BinaryStreamNotFoundException

Oct 14th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. package org.filestore.ejb.store;
  2.  
  3. public class BinaryStreamNotFoundException extends Exception {
  4.  
  5. private static final long serialVersionUID = 1L;
  6.  
  7. public BinaryStreamNotFoundException() {
  8. super();
  9. }
  10.  
  11. public BinaryStreamNotFoundException(String message, Throwable cause) {
  12. super(message, cause);
  13. }
  14.  
  15. public BinaryStreamNotFoundException(String message) {
  16. super(message);
  17. }
  18.  
  19. public BinaryStreamNotFoundException(Throwable cause) {
  20. super(cause);
  21. }
  22.  
  23. }
Add Comment
Please, Sign In to add comment