001    package railo.runtime.exp;
002    
003    public class AlwaysThrow extends PageRuntimeException {
004    
005            public AlwaysThrow(PageException pe) {
006                    super(pe);
007            }
008            public AlwaysThrow(String message) {
009                    super(message);
010            }
011            public AlwaysThrow(String message, String detail) {
012                    super(message, detail);
013            }
014    
015    
016    
017    }