org.springframework.richclient.command
Class InvalidGroupMemberEncodingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.richclient.application.ApplicationException
                  extended by org.springframework.richclient.command.CommandException
                      extended by org.springframework.richclient.command.InvalidGroupMemberEncodingException
All Implemented Interfaces:
Serializable

public class InvalidGroupMemberEncodingException
extends CommandException

Indicates that an encoded string specifying a command group member type is not valid.

Since:
0.3
Author:
Kevin Stembridge
See Also:
Serialized Form

Constructor Summary
InvalidGroupMemberEncodingException(String message, String encodedString)
          Creates a new InvalidGroupMemberEncodingException with the given detail message and encoded string.
 
Method Summary
 String getEncodedString()
          Returns the string that is not a valid group member encoding.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidGroupMemberEncodingException

public InvalidGroupMemberEncodingException(String message,
                                           String encodedString)
Creates a new InvalidGroupMemberEncodingException with the given detail message and encoded string. The encoded string will be appended to the given message.

Parameters:
message - The detail message. If null, a default message will be created.
encodedString - The encoded string that is invalid.
Method Detail

getEncodedString

public String getEncodedString()
Returns the string that is not a valid group member encoding.

Returns:
Returns the value of the encodedString field, possibly null.


Copyright © 2004-2008 The Spring Framework. All Rights Reserved.