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

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

Uses of DataException in org.starhope.appius.game
 

Methods in org.starhope.appius.game that throw DataException
static void Commands.do_don(org.json.JSONObject jso, AbstractUser u, AbstractRoom room)
           JSON object has the item ID to be worn (clothes, patterns, pivitz) and optionally set the color (for patterns)
 

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.sendChildSignupMail(User kid)
          Send an eMail notification to a parent, advising them that their child has signed up, and requesting authorization.
static void Mail.sendPremiumMail(User user)
           This method is called when a member has signed up to be a VIT (Very Important Toot) member.
static void Mail.sendSignupMail(Person user)
          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.pay
 

Methods in org.starhope.appius.pay that throw DataException
 void AuthorizeNetGateway.startTransaction(Payment payment)
           
 void AuthorizeNetGateway.transactPayment(Payment payment)
           
 

Uses of DataException in org.starhope.appius.pay.util
 

Methods in org.starhope.appius.pay.util that throw DataException
 void PaymentGatewayReal.startTransaction(Payment payment)
           
 void PaymentGatewayReal.transactPayment(Payment payment)
           
 void PaymentCredential.verifyCredentials()
          TODO: document this method (brpocock, Oct 13, 2009)
 

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.
static void OpCommands.op_dress(String[] words, AbstractUser u, AbstractRoom room)
          Force a character to wear a specific clothing item.
static void OpCommands.op_setavatarcolors(String[] words, AbstractUser u, AbstractRoom room)
          TODO: document this method (brpocock, Nov 20, 2009)
 void Filter.setTitle(String title1)
          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)
          TODO: document this method (brpocock, Dec 11, 2009)
private  void Colour.setGreen(int g)
           
private  void Colour.setRed(int r)
          TODO: document this method (brpocock, Dec 11, 2009)
 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.