Uses of Class
com.ecyrd.jspwiki.WikiException

Packages that use WikiException
com.ecyrd.jspwiki   
com.ecyrd.jspwiki.auth   
com.ecyrd.jspwiki.auth.authorize   
com.ecyrd.jspwiki.filters   
com.ecyrd.jspwiki.plugin Provides plugins to the JSPWiki. 
com.ecyrd.jspwiki.providers   
com.ecyrd.jspwiki.search   
com.ecyrd.jspwiki.util Provides a number of utility libraries that are of general use. 
 

Uses of WikiException in com.ecyrd.jspwiki
 

Subclasses of WikiException in com.ecyrd.jspwiki
 class NoRequiredPropertyException
          Marks an erroneus jspwiki.properties file.
 class NoSuchVariableException
          Marks that no such variable was located.
 

Methods in com.ecyrd.jspwiki that throw WikiException
 String WikiEngine.renamePage(WikiContext context, String renameFrom, String renameTo, boolean changeReferrers)
          Renames, or moves, a wiki page.
 String PageRenamer.renamePage(WikiContext context, String oldName, String newName, boolean changeReferrers)
          Renames, or moves, a wiki page.
 void WikiEngine.saveText(WikiContext context, String text)
          Writes the WikiText of a page into the page repository.
 

Constructors in com.ecyrd.jspwiki that throw WikiException
PageManager(WikiEngine engine, Properties props)
          Creates a new PageManager.
WikiEngine(Properties properties)
          Instantiate the WikiEngine using a given set of properties.
WikiEngine(javax.servlet.ServletContext context, String appid, Properties props)
          Instantiate using this method when you're running as a servlet and WikiEngine will figure out where to look for the property file.
 

Uses of WikiException in com.ecyrd.jspwiki.auth
 

Subclasses of WikiException in com.ecyrd.jspwiki.auth
 class NoSuchPrincipalException
          Thrown in some error situations where a WikiPrincipal object does not exist.
 class WikiSecurityException
          Indicates an authentication or authorization error or exception.
 

Methods in com.ecyrd.jspwiki.auth that throw WikiException
 void AuthorizationManager.initialize(WikiEngine engine, Properties properties)
          Initializes AuthorizationManager with an engine and set of properties.
 void AuthenticationManager.initialize(WikiEngine engine, Properties props)
          Creates an AuthenticationManager instance for the given WikiEngine and the specified set of properties.
 

Uses of WikiException in com.ecyrd.jspwiki.auth.authorize
 

Methods in com.ecyrd.jspwiki.auth.authorize that throw WikiException
 void GroupManager.commit()
          Commits the groups to persistent storage.
 void DefaultGroupManager.commit()
          Commits the groups to disk.
 

Uses of WikiException in com.ecyrd.jspwiki.filters
 

Subclasses of WikiException in com.ecyrd.jspwiki.filters
 class FilterException
          A generic PageFilter exception.
 class RedirectException
          This exception may be thrown if a filter wants to reject something and redirect the user elsewhere.
 

Methods in com.ecyrd.jspwiki.filters that throw WikiException
 void FilterManager.initialize(WikiEngine engine, Properties props)
          Initializes the filters from an XML file.
 

Constructors in com.ecyrd.jspwiki.filters that throw WikiException
FilterManager(WikiEngine engine, Properties props)
           
 

Uses of WikiException in com.ecyrd.jspwiki.plugin
 

Subclasses of WikiException in com.ecyrd.jspwiki.plugin
 class PluginException
           
 

Uses of WikiException in com.ecyrd.jspwiki.providers
 

Subclasses of WikiException in com.ecyrd.jspwiki.providers
 class NoSuchVersionException
          Indicates that an non-existing version was specified.
 class ProviderException
          This exception represents the superclass of all exceptions that providers may throw.
 class RepositoryModifiedException
          If the provider detects that someone has modified the repository externally, it should throw this exception.
 

Uses of WikiException in com.ecyrd.jspwiki.search
 

Methods in com.ecyrd.jspwiki.search that throw WikiException
 void SearchManager.initialize(WikiEngine engine, Properties properties)
          This particular method starts off indexing and all sorts of various activities, so you need to run this last, after things are done.
 

Constructors in com.ecyrd.jspwiki.search that throw WikiException
SearchManager(WikiEngine engine, Properties properties)
           
 

Uses of WikiException in com.ecyrd.jspwiki.util
 

Methods in com.ecyrd.jspwiki.util that throw WikiException
protected  void ProviderConverter.convert()