001    package com.skype.ipc;
002    
003    import java.io.IOException;
004    
005    public class ProtocolException extends IOException {
006    
007            private static final long serialVersionUID = 1L;
008    
009            public ProtocolException(final String description) {
010                    super(description);
011            }
012    }
013