Uses of Class
pt.ul.fc.di.nlx.lxServiceClient.exceptions.LXException

Packages that use LXException
pt.ul.fc.di.nlx.lxServiceClient   
pt.ul.fc.di.nlx.lxServiceClient.exceptions   
pt.ul.fc.di.nlx.lxServiceClient.exceptions.client   
pt.ul.fc.di.nlx.lxServiceClient.exceptions.service   
 

Uses of LXException in pt.ul.fc.di.nlx.lxServiceClient
 

Methods in pt.ul.fc.di.nlx.lxServiceClient that throw LXException
 java.lang.String LXClient.chunks(java.lang.String text)
          Segments into sentences and paragraphs with LX-Chunker.

Marks sentence boundaries with <s>...</s> and paragraph boundaries with <p>...</p>.
Unwraps sentences split over different lines.

See: accuracy of LX-Chunker.
 java.lang.String LXClient.posTags(java.lang.String text)
          Segments into sentences and paragraphs with LX-Chunker and into lexemes with LX-Tokenizer, and annotates with POS tags with LX-Tagger.

Assigns a single morpho-syntactic tag, from the tagset below, to every token.
 java.lang.String LXClient.tokenizes(java.lang.String text)
          Segments into sentences and paragraphs with LX-Chunker and into lexemes with LX-Tokenizer.

Tokenizes text into lexically relevant tokens.
 

Uses of LXException in pt.ul.fc.di.nlx.lxServiceClient.exceptions
 

Methods in pt.ul.fc.di.nlx.lxServiceClient.exceptions that throw LXException
 void ManageExceptions.manage()
          Manages the exceptions throwned by LXClient or LXService.
 

Uses of LXException in pt.ul.fc.di.nlx.lxServiceClient.exceptions.client
 

Subclasses of LXException in pt.ul.fc.di.nlx.lxServiceClient.exceptions.client
 class NullSentenceProvidedException
          Represents an LXException that is returned when a null sentence is provided by the client
(exception reported by the LXClient).
 class SentenceLengthException
          Represents an LXException that is returned when the client sends to the service a sentence bigger than the maximum length allowed
(exception reported by the LXClient).
 class UsernameAuthenticationFailedException
          Represents an LXException that is returned when the client/service username authentication fails
(exception reported by the LXClient).
 

Uses of LXException in pt.ul.fc.di.nlx.lxServiceClient.exceptions.service
 

Subclasses of LXException in pt.ul.fc.di.nlx.lxServiceClient.exceptions.service
 class NullSentenceReturnedException
          Represents an LXException that is returned when a null sentence is returned by the service
(exception reported by LXService).
 class ServiceNotAvailableException
          Represents an LXException that is returned when the service is not available
(exception reported by LXService).
 class UsernameVerificationFailedException
          Represents an LXException that is returned when the client/service username verification fails
(exception reported by LXService).