Skip to content
Snippets Groups Projects
Select Git revision
  • 1717f6fbd630e3cbb9253c3480bbfeaeb4576ba8
  • master default protected
  • cmake-review-cppzmq
  • meson
  • meson2
  • cmake-win
  • maven-cmake-review
  • mkdocs
  • jsonp-java
  • rpm
  • publisher-topic-bytes
  • v1 protected
  • cpack_and_python_2
  • cpack_and_python
  • cpack
  • v0 protected
  • r2.2.0
  • r2.1.1
  • r2.1.0
  • r2.0.5
  • r2.0.4
  • r2.0.3
  • r2.0.2
  • r2.0.1
  • r2.0.0
  • r1.1.1
  • r1.1.0
  • r0.17
  • r1.0.0
29 results

StarterServerException.h

Blame
  • StarterServerException.h 837 B
    /*
     * Copyright 2015 Institut Laue-Langevin
     *
     * Licensed under the EUPL, Version 1.1 only (the "License");
     * You may not use this work except in compliance with the Licence.
     * You may obtain a copy of the Licence at:
     *
     * http://joinup.ec.europa.eu/software/page/eupl
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the Licence is distributed on an "AS IS" basis,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the Licence for the specific language governing permissions and
     * limitations under the Licence.
     */
    
    #ifndef CAMEO_STARTERSERVEREXCEPTION_H_
    #define CAMEO_STARTERSERVEREXCEPTION_H_
    
    #include "RemoteException.h"
    
    namespace cameo {
    
    class StarterServerException : public RemoteException {
    
    public:
    	StarterServerException();
    };
    
    }
    
    #endif