Package utils.tracer

Examples of utils.tracer.TraceException


         
          trace.readCurrentState( channelClassName , channelState );
          if ( commChannel != null )
            commChannel.setCommunicationChannelState( channelState );
          else
            throw new TraceException( "El robot no tiene un canal de comunicaciones establecido." );


          // Obtiene el estado de la red neuronal.
          if ( netState == null )
            netState = new NeuralNetworkState();
         
          trace.readCurrentState( netClassName , netState );
          if ( neuralNet != null )
            neuralNet.setNeuralNetworkState( netState );
          else
            throw new TraceException( "El robot no tiene una red neuronal establecida." );
         
        }
        catch (TraceException e)
        {
          Logger.error( e.getMessage() );
View Full Code Here

TOP

Related Classes of utils.tracer.TraceException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.