1 48 49 package org.jpublish.repository; 50 51 import org.jpublish.EntityNotFoundException; 52 53 58 59 public class ContentNotFoundException extends EntityNotFoundException { 60 61 64 65 public ContentNotFoundException() { 66 super(); 67 } 68 69 74 75 public ContentNotFoundException(String message) { 76 super(message); 77 } 78 79 85 86 public ContentNotFoundException(String message, Throwable t) { 87 super(message, t); 88 } 89 90 } 91 | Popular Tags |