Where Am I? Class Hierarchy All Classes All Fields and Methods

Class com.ibm.ivj.util.base.IvjImportException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----com.ibm.ivj.util.base.IvjException
                           |
                           +----com.ibm.ivj.util.base.IvjImportException

public class IvjImportException
extends IvjException

This exception is thrown on import operations. In addition to the exception error messages, it also contains a partial result of the import (ie. a list of any types that were successfully imported)


Constructor Index

IvjImportException(String)
IvjImportException constructor.
IvjImportException(String, String[])
IvjImportException constructor.
IvjImportException(String, String[], Type[])
IvjImportException constructor.

Method Index

getImportedTypes()
Returns partial result of the import operation.

Constructors

IvjImportException
 public IvjImportException(String message)
IvjImportException constructor.

Parameters:
message - java.lang.String error message
IvjImportException
 public IvjImportException(String message,
                           String errors[])
IvjImportException constructor.

Parameters:
message - java.lang.String error message
errors - java.lang.String[] error details
IvjImportException
 public IvjImportException(String message,
                           String errors[],
                           Type types[])
IvjImportException constructor.

Parameters:
message - java.lang.String error message
errors - java.lang.String[] error details
types - com.ibm.ivj.util.base.Type[] imported types (partial result)

Methods

getImportedTypes
 public Type[] getImportedTypes()
Returns partial result of the import operation.

Returns:
com.ibm.ivj.util.base.Type[] types successfully imported

Where Am I? Class Hierarchy All Classes All Fields and Methods