org.springframework.batch.item.file.transform
Class FlatFileFormatException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.batch.item.file.transform.FlatFileFormatException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
IncorrectLineLengthException, IncorrectTokenCountException

public class FlatFileFormatException
extends RuntimeException

Exception indicating that some type of error has occured while attempting to parse a line of input into tokens.

Author:
Lucas Ward
See Also:
Serialized Form

Constructor Summary
FlatFileFormatException(String message)
          Create a new FlatFileFormatException based on a message.
FlatFileFormatException(String message, Throwable cause)
          Create a new FlatFileFormatException based on a message and another exception.
 
Method Summary
 
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

FlatFileFormatException

public FlatFileFormatException(String message)
Create a new FlatFileFormatException based on a message.

Parameters:
message - the message for this exception

FlatFileFormatException

public FlatFileFormatException(String message,
                               Throwable cause)
Create a new FlatFileFormatException based on a message and another exception.

Parameters:
message - the message for this exception
cause - the other exception


Copyright © 2013 SpringSource. All Rights Reserved.