org.coinor.opents
Class NoCurrentSolutionException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.coinor.opents.NoCurrentSolutionException
All Implemented Interfaces:
java.io.Serializable

public class NoCurrentSolutionException
extends java.lang.Exception

This exception is thrown when there is no current solution Execution does not stop. The TabuSearch moves on to the next iteration, giving other threads the opportunity to set the current solution.

This code is licensed for public use under the Common Public License version 0.5.
The Common Public License, developed by IBM and modeled after their industry-friendly IBM Public License, differs from other common open source licenses in several important ways:

Copyright © 2001 Robert Harder

Since:
1.0
See Also:
Serialized Form

Constructor Summary
NoCurrentSolutionException()
          Constructs generic NoCurrentSolutionException.
NoCurrentSolutionException(java.lang.String s)
          Constructs a NoCurrentSolutionException with the specified String.
 
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

NoCurrentSolutionException

public NoCurrentSolutionException()
Constructs generic NoCurrentSolutionException. This constructor only calls super().

Since:
1.0

NoCurrentSolutionException

public NoCurrentSolutionException(java.lang.String s)
Constructs a NoCurrentSolutionException with the specified String. This constructor calls super( s ).

Parameters:
s - String describing the exception
Since:
1.0