AFLPcore
Class ListNotSearchableError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--AFLPcore.ListNotSearchableError
All Implemented Interfaces:
java.io.Serializable

public class ListNotSearchableError
extends java.lang.Error

Thrown when a list cannot be sorted or searched. The most likely cause is that the list contains Data that cannot be sorted. For a list to be sortable it must consist of only SortableData types, which is a subclass of Data.

See Also:
Data, SortableData, DataList, Serialized Form

Constructor Summary
ListNotSearchableError()
          Constructs a ListNotSearchableError with no detailed message.
ListNotSearchableError(java.lang.String s)
          Constructs a ListNotSearchableError with the specified detailed message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ListNotSearchableError

public ListNotSearchableError()
Constructs a ListNotSearchableError with no detailed message.

ListNotSearchableError

public ListNotSearchableError(java.lang.String s)
Constructs a ListNotSearchableError with the specified detailed message.
Parameters:
s - the detailed error message.