]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/exception/PendingVariableException.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / exception / PendingVariableException.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.layer0.exception;
13
14 import org.simantics.db.Resource;
15 import org.simantics.db.exception.VariableException;
16
17
18 public class PendingVariableException extends VariableException {
19
20         private static final long serialVersionUID = -8379218573294565788L;
21         
22         private final Resource resource;
23         
24         public PendingVariableException(String message) {
25                 super(message);
26                 this.resource = null;
27         }
28
29         public PendingVariableException(String message, Resource resource) {
30                 super(message);
31                 this.resource = resource;
32         }
33         
34         public Resource getResource() {
35                 return resource;
36         }
37         
38         @Override
39         public synchronized Throwable fillInStackTrace() {
40             return null;
41         }
42
43 }