Package org.apache.excalibur.instrument.manager.interfaces

Examples of org.apache.excalibur.instrument.manager.interfaces.NoSuchInstrumentSampleException


    {
        InstrumentSample instrumentSample =
            m_instrumentProxy.getInstrumentSample( instrumentSampleName );
        if ( instrumentSample == null )
        {
            throw new NoSuchInstrumentSampleException(
                "No instrument sample can be found using name: " + instrumentSampleName );
        }
       
        return instrumentSample.getDescriptor();
    }
View Full Code Here

TOP

Related Classes of org.apache.excalibur.instrument.manager.interfaces.NoSuchInstrumentSampleException

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.