Uses of Interface
net.sf.mmm.util.nls.api.NlsThrowable

Packages that use NlsThrowable
net.sf.mmm.util.cli.api Provides the API for utilities that help to build command-line-interfaces (CLI). 
net.sf.mmm.util.collection.base Contains public implementations of the Collection-Util API
net.sf.mmm.util.component.api Contains API to help implementing components. 
net.sf.mmm.util.date.api Provides the API for utilities that help to deal with date and time. 
net.sf.mmm.util.file.api Provides the API for utilities that help to deal with Files. 
net.sf.mmm.util.io.api Provides the API for utilities that help to read and write data, process bytes, etc. 
net.sf.mmm.util.math.api Provides the API for utilities that help to deal with Numbers. 
net.sf.mmm.util.nls.api Provides the API for the native language support (NLS). 
net.sf.mmm.util.nls.impl.formatter Contains the implementation of formatters for the native language support (NLS). 
net.sf.mmm.util.pojo.descriptor.api Provides the API for introspection of Pojos. 
net.sf.mmm.util.pojo.path.api Provides the API for navigating a PojoPath
net.sf.mmm.util.pojo.path.base Contains the base-implementation of the PojoPath API. 
net.sf.mmm.util.reflect.api Provides the API for utilities that help to deal with reflection. 
net.sf.mmm.util.reflect.base Contains the base-implementations of the Reflection-Util API
net.sf.mmm.util.resource.api Provides the API for utilities that help to load resources from arbitrary sources. 
net.sf.mmm.util.value.api Provides the API for generic handling of values. 
net.sf.mmm.util.xml.api Provides the API of utilities that help to deal with XML. 
net.sf.mmm.util.xml.base Contains the base-implementation of the XML-Util API
 

Uses of NlsThrowable in net.sf.mmm.util.cli.api
 

Classes in net.sf.mmm.util.cli.api that implement NlsThrowable
 class CliArgumentMissingException
          A CliArgumentMissingException is thrown if a required argument is missing.
 class CliArgumentReferenceMissingException
          A CliArgumentReferenceMissingException is thrown if a referenced argument is missing.
 class CliClassNoPropertyException
          A CliClassNoPropertyException is thrown if a CLI-class is illegal because it has no property annotated with CliOption or CliArgument.
 class CliException
          A CliException is thrown, if the commandline arguments are invalid for a specific main-program.
 class CliModeUndefinedException
          A CliModeUndefinedException is thrown if a CliOption or CliArgument defines a mode that is NOT defined.
 class CliOptionAndArgumentAnnotationException
          A CliOptionAndArgumentAnnotationException is thrown if a property is annotated with both CliOption and CliArgument.
 class CliOptionDuplicateException
          A CliOptionDuplicateException is thrown if the same option occurred multiple times as commandline-argument.
 class CliOptionIllegalNameOrAliasException
          A CliOptionIllegalNameOrAliasException is thrown if the name or alias of a CliOption is illegal.
 class CliOptionIncompatibleModesException
          A CliOptionIncompatibleModesException is thrown if two options are used together that have incompatible modes.
 class CliOptionMisplacedException
          A CliOptionMisplacedException is thrown if an option is misplaced, meaning that it occurred after the first argument has been detected.
 class CliOptionMissingException
          A CliOptionMissingException is thrown if a required option is missing.
 class CliOptionMissingValueException
          A CliOptionMissingValueException is thrown if an option requires a value that is missing (no proper value is specified as commandline argument).
 class CliOptionUndefinedException
          A CliOptionUndefinedException is thrown if an option is given as commandline-argument if NOT defined.
 class CliParameterListEmptyException
          A CliParameterListEmptyException is thrown if CliParser.parseParameters(String...) is called without a single parameter.
 class CliParserExcepiton
          A CliParserExcepiton is thrown if a property is annotated as CliOption or CliArgument but the type of that property is not supported.
 

Uses of NlsThrowable in net.sf.mmm.util.collection.base
 

Classes in net.sf.mmm.util.collection.base that implement NlsThrowable
 class NodeCycleException
          A NodeCycleException is thrown if a chain of nodes has a cyclic dependency.
 

Uses of NlsThrowable in net.sf.mmm.util.component.api
 

Classes in net.sf.mmm.util.component.api that implement NlsThrowable
 class AlreadyInitializedException
          This is the exception thrown if an operation was invoked after the object was initialized but has to be called before initialization.
 class NotInitializedException
          This is the exception thrown if an operation was invoked before the object was initialized but has to be called after initialization.
 class ResourceAmbiguousException
          This is the exception thrown if a unique resource is required but multiple instances have been found.
 class ResourceMissingException
          This is the exception thrown if a resource is required but is NOT available.
 

Uses of NlsThrowable in net.sf.mmm.util.date.api
 

Classes in net.sf.mmm.util.date.api that implement NlsThrowable
 class IllegalDateFormatException
          This is the exception thrown if a date given as string was illegal.
 

Uses of NlsThrowable in net.sf.mmm.util.file.api
 

Classes in net.sf.mmm.util.file.api that implement NlsThrowable
 class FileAlreadyExistsException
          A FileAlreadyExistsException is thrown if a file or directory already exists but was NOT expected.
 class FileCreationFailedException
          A FileCreationFailedException is thrown if a file or directory should be created but the creation failed.
 class FileDeletionFailedException
          A FileDeletionFailedException is thrown if a file or directory should be deleted but the deletion failed.
 class FileNotExistsException
          A FileNotExistsException is thrown if a file or directory is expected but was NOT found.
 

Uses of NlsThrowable in net.sf.mmm.util.io.api
 

Classes in net.sf.mmm.util.io.api that implement NlsThrowable
 class BufferExceedException
          A BufferExceedException is thrown if a buffer (typically array of bytes or chars) is exceeded (e.g. offset or length are out of range).
 class RuntimeIoException
          A RuntimeIoException is like an IOException but as a RuntimeException.
 class StreamClosedException
          A StreamClosedException is thrown if a stream is used that has already been closed.
 

Uses of NlsThrowable in net.sf.mmm.util.math.api
 

Classes in net.sf.mmm.util.math.api that implement NlsThrowable
 class NumberConversionException
          This is the exception thrown if a numeric value can NOT converted to a specific number-type.
 

Uses of NlsThrowable in net.sf.mmm.util.nls.api
 

Classes in net.sf.mmm.util.nls.api that implement NlsThrowable
 class AbstractNlsException
          This is an abstract base implementation of a checked exception with real native language support (NLS).
 class AbstractNlsRuntimeException
          This is an abstract base implementation of an unchecked exception with real native language support (NLS).
 class ComposedException
          An ComposedException combines a list of exceptions in one single exception.
 class DuplicateObjectException
          An DuplicateObjectException is thrown if an object was rejected because it is a duplicate.
 class IllegalCaseException
          A IllegalCaseException is thrown if a specific case occurred that should never happen.
 class NlsClassCastException
          A NlsClassCastException is analog to an ClassCastException but with native language support.
 class NlsException
          This is an abstract base implementation of a checked exception with real native language support (NLS).
 class NlsIllegalArgumentException
          A NlsIllegalArgumentException is analog to an IllegalArgumentException but with true native language support.
 class NlsIllegalStateException
          A NlsIllegalStateException is analog to an IllegalStateException but with true native language support.
 class NlsNullPointerException
          A NlsNullPointerException is analog to an NullPointerException but with native language support.
 class NlsParseException
          The NlsParseException is thrown if some data could NOT be parsed because it does NOT match the according format (pattern or grammar).
 class NlsRuntimeException
          This the base class for all runtime exceptions of the project.
 class NlsUnsupportedOperationException
          An NlsUnsupportedOperationException is thrown if an operation was invoked that is NOT implemented or generally NOT supported.
 class ObjectNotFoundException
          An ObjectNotFoundException is thrown if an object was requested but does NOT exist or could NOT be found.
 

Methods in net.sf.mmm.util.nls.api with parameters of type NlsThrowable
(package private) static void AbstractNlsException.printStackTrace(NlsThrowable throwable, Locale locale, NlsTemplateResolver resolver, Appendable buffer)
           
 

Uses of NlsThrowable in net.sf.mmm.util.nls.impl.formatter
 

Classes in net.sf.mmm.util.nls.impl.formatter that implement NlsThrowable
 class NlsFormatterChoiceNoElseConditionException
          The NlsFormatterChoiceNoElseConditionException is thrown if a choice-format has no (else)-condition.
 class NlsFormatterChoiceOnlyElseConditionException
          The NlsFormatterChoiceOnlyElseConditionException is thrown if a choice-format starts with an (else)-condition.
 

Uses of NlsThrowable in net.sf.mmm.util.pojo.descriptor.api
 

Classes in net.sf.mmm.util.pojo.descriptor.api that implement NlsThrowable
 class PojoPropertyNotFoundException
          A PojoPropertyNotFoundException is thrown if a property should be accessed that does NOT exist (was NOT found) or can NOT be accessed in the intended way.
 

Uses of NlsThrowable in net.sf.mmm.util.pojo.path.api
 

Classes in net.sf.mmm.util.pojo.path.api that implement NlsThrowable
 class IllegalPojoPathException
          An IllegalPojoPathException is thrown by the PojoPathNavigator if the supplied PojoPath is illegal.
 class PojoPathAccessException
          A PojoPathAccessException is thrown if a PojoPath could NOT be evaluated because it lead to an invalid access on some object.
 class PojoPathConversionException
          A PojoPathConversionException is thrown if a Pojo has the wrong type and could NOT be converted to the required type.
 class PojoPathCreationException
          A PojoPathCreationException is thrown by the PojoPathNavigator if the supplied mode is PojoPathMode.CREATE_IF_NULL and an intermediate Pojo was null but could NOT be created.
 class PojoPathException
          This is the abstract base class for exceptions thrown by the PojoPathNavigator.
 class PojoPathFunctionUndefinedException
          An PojoPathFunctionUndefinedException is thrown by the PojoPathNavigator if the segment of a PojoPath points to a PojoPathFunction that is NOT registered.
 class PojoPathFunctionUnsupportedOperationException
          A PojoPathFunctionUnsupportedOperationException is thrown if a PojoPathFunction does NOT support a specific operation that was invoked.
 class PojoPathSegmentIsNullException
          A PojoPathSegmentIsNullException is thrown by the PojoPathNavigator if the supplied mode is PojoPathMode.FAIL_IF_NULL and an intermediate Pojo was null.
 class PojoPathUnsafeException
          A PojoPathUnsafeException is thrown by the PojoPathNavigator if the supplied mode was PojoPathMode.FAIL_IF_NULL and the PojoPath was unsafe.
 

Uses of NlsThrowable in net.sf.mmm.util.pojo.path.base
 

Classes in net.sf.mmm.util.pojo.path.base that implement NlsThrowable
 class PojoPathCachingDisabledException
          A PojoPathCachingDisabledException is thrown if caching is required to access a specific PojoPath but caching was disabled at this point.
 

Uses of NlsThrowable in net.sf.mmm.util.reflect.api
 

Classes in net.sf.mmm.util.reflect.api that implement NlsThrowable
 class AccessFailedException
          An AccessFailedException is thrown if a reflective call failed because the executing code does NOT have access to the according definition.
 class AnnotationNotForTargetException
          A AnnotationNotForTargetException is thrown if an Annotation should be resolved for a specific ElementType that it is NOT targeted for.
 class AnnotationNotRuntimeException
          A AnnotationNotRuntimeException is thrown if an Annotation should be resolved at runtime but has NOT the Retention RetentionPolicy.RUNTIME.
 class InstantiationFailedException
          An InstantiationFailedException indicates that the instantiation of a Class failed for arbitrary reasons.
 class InvocationFailedException
          An InvocationFailedException is thrown if a reflective invocation of an AccessibleObject failed.
 class ReflectionException
          A ReflectionException is thrown if an operation using reflection failed.
 class TypeNotFoundException
          A TypeNotFoundException is thrown if a Type was requested (e.g. via Class.forName(String)) but could NOT be found.
 

Uses of NlsThrowable in net.sf.mmm.util.reflect.base
 

Classes in net.sf.mmm.util.reflect.base that implement NlsThrowable
 class ContainerGrowthException
          A ContainerGrowthException is thrown if a container should grow (increase its size) but this failed.
 class IllegalWildcardSequenceException
          A IllegalWildcardSequenceException is thrown if a wildcard-type given as string could NOT be parsed because it contains an illegal sequence (e.g
 class UnknownCollectionInterfaceException
          A UnknownCollectionInterfaceException is thrown if a Collection-interface was given that is unknown or no Collection.
 

Uses of NlsThrowable in net.sf.mmm.util.resource.api
 

Classes in net.sf.mmm.util.resource.api that implement NlsThrowable
 class ResourceNotAvailableException
          This exception is thrown if a resource was requested that is NOT available.
 class ResourceNotWritableException
          This exception is thrown if a resource should be written that is read-only or NOT writable for any other reason.
 class ResourceUriUndefinedException
          This exception is thrown if a resource was requested for an URI that is undefined or illegal (e.g.
 

Uses of NlsThrowable in net.sf.mmm.util.value.api
 

Classes in net.sf.mmm.util.value.api that implement NlsThrowable
 class ValueConvertException
          The ValueConvertException is thrown if the conversion of some value failed.
 class ValueException
          This exception is thrown if a something goes wrong about values.
 class ValueNotSetException
          This is the exception thrown if a required value was not set.
 class ValueOutOfRangeException
          This is the exception thrown if a numeric value is not in the expected range.
 class WrongValueTypeException
          This exception is thrown if a value has the wrong type (a different value type was expected).
 

Uses of NlsThrowable in net.sf.mmm.util.xml.api
 

Classes in net.sf.mmm.util.xml.api that implement NlsThrowable
 class XmlException
          An XmlException is thrown if something went wrong with XML serialization or parsing.
 class XmlGenericException
          A XmlGenericException is used to wrap exceptions of underlying XML-frameworks such as StAX or SAX that throw checked exceptions.
 

Uses of NlsThrowable in net.sf.mmm.util.xml.base
 

Classes in net.sf.mmm.util.xml.base that implement NlsThrowable
 class XmlInvalidException
          A XmlInvalidException is like a SAXException but as a RuntimeException.
 



Copyright © 2001-2010 mmm-Team. All Rights Reserved.