Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear
*.zip
*.tar.gz
*.rar
*.iml

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*


**/.idea/
**/node_modules/
.DS_Store
.idea
target/
.classpath
.project
.settings
javaConfig.json
**/.checkstyle
target/
bin/
**/lib/
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
/*******************************************************************************
* Copyright (c) 2017 Microsoft Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Microsoft Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.ls.debug;
public class DebugException extends Exception {
private static final long serialVersionUID = 1L;
public DebugException() {
super();
}
public DebugException(String message) {
super(message);
}
public DebugException(String message, Throwable cause) {
super(message, cause);
}
public DebugException(Throwable cause) {
super(cause);
}
}
/*******************************************************************************
* Copyright (c) 2017 Microsoft Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Microsoft Corporation - initial API and implementation
*******************************************************************************/

package org.eclipse.jdt.ls.debug;

public class DebugException extends Exception {
private static final long serialVersionUID = 1L;

public DebugException() {
super();
}

public DebugException(String message) {
super(message);
}

public DebugException(String message, Throwable cause) {
super(message, cause);
}

public DebugException(Throwable cause) {
super(cause);
}
}
Loading