1 54 55 package org.apache.jetspeed.portlet; 56 57 65 66 public class UnavailableException extends PortletException 67 { 68 private int unavailableSeconds; 69 70 76 77 public UnavailableException (String text) 78 { 79 this (text, -1); 80 } 81 82 92 93 public UnavailableException (String text, int seconds) 94 { 95 super (text); 96 97 unavailableSeconds = seconds; 98 } 99 100 113 114 public int getUnavailableSeconds () 115 { 116 return (unavailableSeconds); 117 } 118 } 119 | Popular Tags |