Uses of Class
org.starhope.appius.except.DataException

Packages that use DataException
org.starhope.appius.mb   
org.starhope.appius.messaging   
org.starhope.appius.sys.op   
org.starhope.appius.types   
 

Uses of DataException in org.starhope.appius.mb
 

Methods in org.starhope.appius.mb that throw DataException
 Date Payment.getRetryTime()
           If this payment is pending, and we're holding credentials in core, we need to figure out how long before we try again.
 void Payment.prepareForRetry(RetryPaymentException retryPaymentException)
          If a payment should retry processing in future (e.g.
 void Currency.setCode(String newCode)
          Change the currency code for this instance.
 void Currency.setSymbol(String newSymbol)
          Set the user-visible displayed symbol of this currency.
 

Uses of DataException in org.starhope.appius.messaging
 

Methods in org.starhope.appius.messaging that throw DataException
static String Mail.getDomainPart(String address)
          This extracts the mail domain from the address.
static String Mail.getLocalPart(String address)
          Extracts the local-part specification out of an eMail address, removing any comment strings, and returns something like what people naïvely assume is a valid eMail address.
static void Mail.sendSignupMail(User user, String parentMail)
          Update the email address for the user and then send an enrollment email to the address.
static void Mail.validateMail(String address)
          Forbids recently-bounced addresses from being used as well.
static void Mail.validateMXDomain(String domainName)
           
 

Uses of DataException in org.starhope.appius.sys.op
 

Methods in org.starhope.appius.sys.op that throw DataException
 void Filter.addException(String pat, String exception, FilterAction action)
          This adds an exception to a pattern.
 void Filter.addPattern(String pat, FilterAction action)
          Adds a new pattern to this filter, with the supplied action associated.
 void Filter.setTitle(String title)
          20-char limit; visible only to staff
 

Uses of DataException in org.starhope.appius.types
 

Methods in org.starhope.appius.types that throw DataException
private  void Colour.setBlue(int b)
           
private  void Colour.setGreen(int g)
           
private  void Colour.setRed(int r)
           
 void Colour.setRGB(short newRed, short newGreen, short newBlue)
          Sets the colour based on specific values for each of the red, green, and blue components.
 

Constructors in org.starhope.appius.types that throw DataException
Colour(int r, int g, int b)
          Create an RGB triplet from int values
Colour(short r, short g, short b)
          Create an RGB triplet from short values
Colour(String rgb)
           Constructor: Instantiate a Colour object based upon the CSS, HTML, or JSON style of colour string.