1 16 package org.apache.cocoon; 17 18 import org.apache.cocoon.util.location.Location; 19 20 27 public class ResourceNotFoundException extends ProcessingException { 28 29 32 public ResourceNotFoundException(String message) { 33 super(message); 34 } 35 36 40 public ResourceNotFoundException(String message, Throwable t) { 41 super(message, t); 42 } 43 44 public ResourceNotFoundException(String message, Location location) { 45 super(message, location); 46 } 47 48 public ResourceNotFoundException(String message, Throwable t, Location loc) { 49 super(message, t, loc); 50 } 51 } 52 | Popular Tags |