Package jade.core
Class NotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- jade.core.NotFoundException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MessagingService.UnknownACLEncodingException
public class NotFoundException extends Exception
This exception is thrown when some component (agent, agent container, etc.) cannot be found in the agent platform data structures.- Version:
- $Date$ $Revision$
- Author:
- Giovanni Rimassa - Universita` di Parma
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotFoundException()Construct aNotFoundExceptionwith no detail messageNotFoundException(String msg)Construct aNotFoundExceptionwith the given message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NotFoundException
public NotFoundException()
Construct aNotFoundExceptionwith no detail message
-
NotFoundException
public NotFoundException(String msg)
Construct aNotFoundExceptionwith the given message.- Parameters:
msg- The exception message.
-
-